FileInputStream is a Java class meant for reading streams of raw bytes.

learn more… | top users | synonyms

0
votes
2answers
65 views

Convert office document to pdf and display it on the browser

Please see the update question below (not the top one). I tried to open any document type (especially PDF) on Liferay using this function. But I always get message Awt Desktop is not supported! as ...
1
vote
1answer
14 views

how to write multiple video files together to create one video file

I am trying to build a basic video editor in Android that will take multiple video files and simply write them one after the next back to back into one single video file, I tried creating a loop that ...
0
votes
2answers
38 views

Java FileInputStream in a Web Service [closed]

I have a little problem, i'm trying to load a properties file with a FileInputStream in a Java Web Service. The app.config.properties file contains the next line: fileSales = ...
0
votes
1answer
36 views

Read an ArrayList from Internal Storage

I have an Android application and I would like to read and write an ArrayList<MyClass> to the Internal Storage. The writing part works (I believe, haven't tested it yet :-) ) : ...
1
vote
0answers
23 views

ZipInputStream.getNextEntry() throws IOException on Android Versions below 3.0 (API11)

The following Code seems to work fine on API Levels 11 and above: private ZipInputStream getFileFromZip(InputStream zipFileStream) throws FileNotFoundException, IOException { ZipInputStream ...
0
votes
0answers
63 views

How to convert InputStream to File?

Am receiving an InputStream from a webService that I will then play using the HTML5 tag, so in order to play the audio I need to convert the InputStream to URL so the tag could read this stream ...
0
votes
1answer
15 views

Reading data from FileOutputStream adds “null” to my data

In my first Activity I'm saving coordinates in FileOutputStream then in another Activity I read the data. But it always adds "null" to my coordinations. Am I doing something wrong? Activity 1 where I ...
-2
votes
1answer
62 views

NullPointerExeption on FileInputStream

In my Android application, there is a code that is used in the service and have to read information from a file into a string. I took the code from here http://stackoverflow.com/a/9095665/2448623 ...
0
votes
1answer
37 views

Java I want to search for a binary hex value in my byte array

public static void main(String[] args) { File inFile = null; if (0 < args.length) { inFile = new File(args[0]); } BufferedInputStream bStream = null; try { int read; ...
0
votes
1answer
21 views

Java open file error( can't find the specified path)

I try to open a .txt file (agenda.txt) from the src/resources folder, read objects from it and add them to an ArrayList, but I get this error: "The system can not find the specified path.". This is ...
1
vote
2answers
45 views

Reading a file using FileInputStream vs URLConnection

I have a piece of code that retrieves a file either from a remote server or from the local disk. I understand that URLConnection can handle both cases, so I was wondering if there was any performance ...
-7
votes
1answer
57 views

Can someone take a look at my assignment code? [closed]

I am new to Java so could you tell me where to put the highlighted code in my program because I really can't figure out where to put it import java.io.*; import java.util.*; public class GrandFinal ...
-1
votes
1answer
89 views

Whats wrong with this java code? [closed]

I want to store a whole line from a txt file into an array i managed to do that but when it comes to searching from the array i can't seem to do that.Here's the code: import java.io.*; import ...
0
votes
0answers
25 views

Write and read floats from internal storage

I need to store three pairs of floats (three points coordinates) in file, then read them and compare. I tried this way: public Path loadPath() { Path path = new Path(); float x, y; try ...
1
vote
2answers
40 views

different output for FileReader and FileInputStream

import java.io.FileInputStream; import java.io.FileReader; import java.io.IOException; public class Main { public static void main(String[] args) throws IOException { FileReader ...
0
votes
1answer
113 views

File Upload through rest and html as client

i just want to upload a file using jersey rest service and Jquery ajax as client here is my code 1. HTML <form action="rest/file/upload" method="post" enctype="multipart/form-data"> ...
0
votes
1answer
41 views

The program doesn't proceed inside the input file to read it

Those are the parts of the code I have: ifstream inFile; inFile.open("Product1.wrl"); ... if (!inFile.is_open()){ cout << "Could not open file to read" << endl; return 0; } else ...
0
votes
1answer
46 views

Android, How to retrieve the image previously save and display when required

I used this code below to save an image taken from the camera intent, to a folder in the gallery, which worked great. I'd like to retrieve the image to display on an ImageView within an activity when ...
0
votes
2answers
60 views

How to create a zip file of multiple image files

I am trying to create a zip file of multiple image files. I have succeeded in creating the zip file of all the images but somehow all the images have been hanged to 950 bytes. I don't know whats ...
0
votes
2answers
38 views

Save mobile number in a file android

I have developed an android app that enable the user to register by his/her mobile phone number. I want my app to save the phone number so that next time the user open the app, there will be no need ...
0
votes
1answer
48 views

convert Uri to file path but can not open it in nexus 4

I open a picture in album and get the Uri. Then I convert the Uri to a file path. In the log it shows as something like mnt/storage/emulated/0/xxx.jpg. I covert Uri to file path as the way like: ...
0
votes
1answer
76 views

Convert ZipOutputStream to FileInputStream

i have a code that takes a file, zip it, and stores it in a database looks like this // STEP 1 - Create a ZIP file byte[] buffer = new byte[1024];// 18024 ...
0
votes
0answers
45 views

java.io.EOFException When trying to read a serialized object

I have a serialized a data object into a file and tried to read that object back inside a servelet.Im getting below exception java.io.EOFException at ...
1
vote
0answers
55 views

DataInputStream available() behaviour for reading files bigger than Integer.MAX_VALUE bytes

I have a binary file in custom format than I have written using DataOutputStream. The simplified format of the data in the file is: IntCharIntCharIntChar...IntChar I am using DataInputStream to read ...
-3
votes
3answers
133 views

Program to add two integer numbers read from a text file and displaying results on console [closed]

Even after lots of trial and error, I am unable to figure out how to write a java program that adds 2 integers (read from a text file) and displays addition result on the console. I tried using ...
3
votes
2answers
162 views

FileInputStream read until last 128 bytes of file

I'm trying to read the last 128 bytes from a file (the signature) and then trying to read until those bytes but the first part (reading the last 128 bytes) is returning an ...
2
votes
2answers
55 views

inside try block a FileIStream variable might not have been initialized error

I am trying to execute this code and I am also providing the valid argument but still I am getting error at line no. 34 and 35 that local variable fin and fout might not have been initialized. How to ...
0
votes
0answers
187 views

How to upload file using java ?

Hello i m trying to upload file using java file.. but i don't get it.. i get file size=0 i'm providing here my java code. tell me why i cant upload on particular folder. i want to store my file in ...
0
votes
0answers
33 views

Reference Table Overflow caused by properties.load();

this is my LogCat: 04-24 10:51:42.384: W/dalvikvm(30752): ReferenceTable overflow (max=1024) 04-24 10:51:42.384: W/dalvikvm(30752): JNI pinned array reference table (0x5c75b170) dump: 04-24 ...
0
votes
1answer
27 views

Can I set the file index to the start of the file?

I want to be able to read an object from a file after I streamed one out to it. Now, It works fine when I am reading at the first time, but when I'm trying to read again (to another object), there is ...
0
votes
2answers
62 views

ObjectOutputStream not saving in custom class

I made my own custom class, and I can't figure out what's wrong with it. More specifically my question is what differences exist between making a class for android instead of Java. I mean, according ...
3
votes
1answer
41 views

NullPointerException when using properties.load()

I have a little problem with Properties in Java, maybe you could help me. In the following code i write my Properties object to XML: global.storeToXML(new FileOutputStream(propertiesPath + SEPERATOR ...
-2
votes
2answers
78 views

reading java class files using java program

I am writing a java code to help me read and print all byte code in a .class file. I have tried surfing the internet, but the answers dont really answer my question. below is the code I currently ...
0
votes
1answer
59 views

Problems using FileInputStream and a File object in place of a named pipe

I'm using a DataStream wrapping a FileStream to send Large Bitmaps between two different apps (Intents have a 1mb limit and I don't want to save the files to the file system), My problem is the ...
0
votes
2answers
128 views

Different behavior of XmlPullParser.getInputEncoding() on API11+ and pre-API11 versions of Android

I am developing a new feature for my android app to enable data backup and restore. I am using XML files to backup data. This is a piece of code that sets encoding for an output file: XmlSerializer ...
0
votes
2answers
103 views

Saving Objects to File. Custom methods to add/remove Object

I want to be able to save the objects created in my program to a file. I have watched a few tutorials on ObjectOutputStream, but the problem is, they only show how to save a specific object created in ...
1
vote
1answer
72 views

read and delete a file

i have tried something like below to write a file, read it and delete. is this a best way ? public class WriteFileExample { private void createFile(String filename){ FileOutputStream fop = ...
-1
votes
3answers
94 views

FileNotFoundException [closed]

Hi guys I'm new to java and one of my requirements is to create a program that will enable user to add edit delete view record such as employee, address, gender, status, days of work and rate per day ...
1
vote
1answer
31 views

Difference between closing FileInputStream and setting it to null

In Java, when we close a resource like a Connection, a FileInputStream, a FileOutputStream, how is it different than setting these object instances to null? i.e in both scenarios, these objects are ...
0
votes
3answers
215 views

Reading any text file having strange encoding?

I have a text file with a strange encoding "UCS-2 Little Endian" that i want to read its contents using Java. As you can see in the above screenshot the file contents appear fine in Notepad++, but ...
0
votes
1answer
61 views

Different output in run and debug while reading file

I am trying to read a file by reading chunks at a time using FileInputStream in Java. The code is following: File file = new File(filepath); FileInputStream is = new ...
0
votes
1answer
443 views

Android Dev: Creating a Bitmap from a temp file stored on the SD card, setting an ImageView, then storing it locally

So due to the quality issues of just getting the data from the android.media.action.IMAGE_CAPTURE, I apparently needed to call the activity, save a local temporary file that I can then create a Bitmap ...
3
votes
5answers
471 views

Java FileInputStream

I am trying to use a FileInputStream to essentially read in a text file, and then output it in a different text file. However, I always get very strange characters when I do this. I'm sure it's some ...
0
votes
1answer
77 views

Perisistant data from ArrayList

Pretty much all day today I've been trying to figure this out but I can't seem to get it right. I understand how to use the File-Output/Input-Stream. However since ArrayList is not an "int" I can't ...
1
vote
3answers
133 views

unable to open FileInputStream

I have a problem reading a file using FileInputStream object. The file I would like to open, exists (I've created it with the same app and I can see it with a file manager on my device). that's the ...
0
votes
1answer
66 views

loop through serialized file

I'm working on a school assignment that is supposed to open a serialized file and output it. I can't figure out why it isn't printing anything. It doesn't seem like the loop is working at all. Any ...
0
votes
4answers
26 views

Android: Getting into right condition using fileinputstream

I'm facing a different problem, see below is the code for my app that can read stored file and have to check condition according to that. My inputs are "ON" and "OFF" String val=""; final ...
0
votes
2answers
383 views

Write file to getFilesDir() fails - NoSuchElementException

here is what I am doing : 1- Getting a file from my assests and put it into a String - SUCCESSFUL 2- Make A file in getFilesDir() - FAILS (No crash yet) 3- Write the string I got to this file using ...
0
votes
0answers
73 views

Android: Open file with specific path [duplicate]

I try to create file ^ set some text ^ and then to read it , but i get "java.lang.IllegalArgumentException: File /mnt/sdcard/new.txt contains a path separator" on line (75) - FileInputStream fis = ...
1
vote
2answers
135 views

File input stream in java - calculating data

I am trying to read in a file into the program and then take fileIn objects and do calculations on them to create a new variable, specifically take a read in price and calulate sales tax. I have done ...

1 2 3 4 5 6