The java.io package provides blocking input and output through data streams, serialization, and the file system.
0
votes
2answers
27 views
Fail to add the final line into .txt file - Android
The app continuously records down the sensor data and write them into a .txt file located in the SD card of the phone. Everything works nicely while writing in the data.
I have a stop button. Once ...
0
votes
3answers
56 views
Read String and bytes from the same file java
I'm looking for a way to switch between reading bytes (as byte[]) and reading lines of Strings from a file. I know that a byte[] can be obtained form a file through a FileInputStream, and a String ...
0
votes
2answers
48 views
Java IO. loading from .txt file as a variable
I am making a simple program where I can keep track of my savings. I have included week no., income, and saved fields. I save this data to a text file and then can retrieve it to a text area. How can ...
-3
votes
0answers
16 views
How to write, read and edit data in java file using random access file? [closed]
I would like to write these data in java file using random access file and then read the data from file. In addition, I want to edit the data as well.
Thanks in advance.
the data as following:
...
-1
votes
1answer
37 views
BufferedReader drops lines [closed]
I'm writing to a ServerSocket like this in a separate thread from my main application:
BlockingQueue<String> queue = new Queue<>();
// THREAD
ServerSocket server = new ...
-2
votes
1answer
34 views
Time complexity of boolean exist and hashtable in java [closed]
I am using boolean exists to check if a file exist in the directory or not. I want to know the time complexity of this method, some part of code is here
File fil = new File(StoreFolder + ...
0
votes
2answers
10 views
Calling a method to read from a text file with BufferedReader
I searched around for this but I could not find a soultion.
Sorry about my bad description. Im not very good at this.
I have a UI class
Its calling a "lotto" class.
That lotto classes constructor ...
0
votes
1answer
35 views
Java : Client-Server Simple Application with IP Blacklist
I'm writing a client-server application in simple java (java.net* and java.io*) with multi-threading to enable connections of several clients to the server. I'm also trying to implement a simple IP ...
0
votes
0answers
13 views
Problems in avro schema .. String, null
In this avro schema
{"type": "record",
"name": "Member",
"fields": [
{"name": "name", "type": ["string", "null"] },
{"name": "skill", "type": "string"}
]}
When I try to assign multiple values to ...
0
votes
1answer
35 views
Generate excel file using java with different column width
I am doing a java application (J2SE) which I have to generate a excel document (.xls). I did generate the file but I am not able to change the cell width dynamically according to the content which is ...
0
votes
0answers
45 views
Why is my code saving data multiple times? [closed]
Im coding in java/ android using libgdx... basically im saving tile data into a text document, and whenever it saves its saving mutiple copies of each tile, so when it saves its taking a long time to ...
3
votes
2answers
99 views
Write Parcelable object got java.io.NotSerializableException
I have a class named Shop, which has 2 fields and 1 static field. The class implements Parcelable interface:
public class Shop implements Parcelable{
private static int SHOP_ID = 12;
private ...
0
votes
1answer
37 views
java.io and socket.getInputStream()
I have this code:
Socket incomingConnection = serverSocket.accept();
String strategy = "1";
Client client = new Client(incomingConnection, this, strategy);
Constructor of Client:
public ...
2
votes
0answers
67 views
merge an audio and an image and create video using fmpeg android
I want to merge IMAGE + AUDIO and convert them into video using FFMPEG library,i compiled the library successfully,and got libfmpeg.so.but getting problem to execute the ffmpeg command through java ...
0
votes
0answers
40 views
how to read integers from a text file using
I am coding in android using libgdx with eclipse
Im trying to read numbers from a text file, text file looks like this ->
1 5 -50 2 , 2 5 -49 2 , 3 5 -48 2 , ... and so on and so forth.
first ...
1
vote
1answer
23 views
delete shared file spring MVC
Consider this, an Admin uploads a file, and some 10 users accessing that file(flv video). Now Admin want to delete that file. I am in this situation now and the file is not deleting. What is the best ...
0
votes
1answer
27 views
Different Objects in ObjectOutputStream
When sending self made Objects over an ObjectOutputStream, do the server and client class of that Object have to be the same?
For example, when some Action can only be performed on a server because ...
0
votes
1answer
31 views
How to import a 2D float matrix from .txt file into a 2D float array in Java?
My data.txt file takes the following format:
14 -0.0 0.29964766 10.7192135 0.0 0.0 0.0 0.0 0.0 0.0
15 -0.0 0.29964766 10.7192135 0.0 0.0 0.0 -8.4375 -36.6875 2.25
15 -0.0 0.29964766 10.7192135 ...
2
votes
2answers
63 views
how to read contents of file, write to outputstream and the re-read and Store in a string variable in memory in java
I need to read contents of a file, write them to an outputstream using an API Writer (PEMWriter - which converts the format of the contents to required format) and then re-read the newly formatted ...
0
votes
3answers
62 views
How to read from 3 List to a txt file
I have 3 different ArrayList of object, items, stores and stock. I’m trying to read from those lists and print a single well formatted txt document called inventory. My issue is to read from more than ...
0
votes
2answers
32 views
how to replace or remove or update line(s) in file using jave FIle i/o
The following is my java class file :
Public class subscriberAction {
private Service1 s1 = ServiceFactory.getServiceImpl1();
private Service2 s2 = ServiceFactory.getServiceImpl2();
----
----
----
...
0
votes
2answers
65 views
Detect a when a client disconnects from the server
How to detect when a client disconnects from a server that is using ServerSocket and Socket?
I have an Object I/O Stream. When the client disconnects, I want to server to decrease the currently ...
1
vote
4answers
57 views
Reading different file one after another using BufferedReader in Java
I am using BufferedReader to read file in java.
Following is the code snippet:
String line;
br = new BufferedReader(new FileReader("file1.txt"));
while ((line = br.readLine()) != null) {
...
0
votes
0answers
21 views
Linux and Opencloud Rhino server showing java.security.AccessControlException: access denied
I am trying a simple File io operation through java code in an application server called Rhino TAS by opencloud ,
My imported files are
import java.io.BufferedReader;
import ...
-2
votes
1answer
56 views
writing and reading a ByteArrayOutputStream but get read after end of file java.io exception [closed]
Writer out = new BufferedWriter (new OutputStreamWriter(new org.apache.commons.io.output.ByteArrayOutputStream()));
PEMWriter writer = new PEMWriter(out);
writer.writeObject(key);
...
-3
votes
2answers
54 views
java.io.StreamCorruptedException: invalid stream header: 4D6F7374
The Java code is
ObjectInputStream ois=new ObjectInputStream(new FileInputStream("src/Stringdata.txt"));
String s=(String)ois.readObject();
...
2
votes
2answers
69 views
Java. How to append text to top of file.txt
I need to add text to beggining of text file via Java.
For example I have test.txt file with data:
Peter
John
Alice
I need to add(to top of file):
Jennifer
It should be:
Jennifer
Peter
John
...
0
votes
2answers
51 views
Reading a file after pressing a button
I have tried to create a program that lets you to choose a file,reads it and then prints the results out... This is what i have so far
public class Main {
public static void main(String[] args) {
...
0
votes
2answers
49 views
Using FilterInputStream to drop remainder of an InputStream
I plan to use Java to process Markdown text files that specify additional meta information like title, author, date of creation etc. at the beginning of the document in the YAML format. Here's an ...
0
votes
1answer
41 views
Android read large files crashing app
Hello as you can see below I m trying to make a (android) app which check md5 hash of file
this code works only for small files
can someone help me?
final TextView informations = (TextView) ...
2
votes
2answers
44 views
Saving information using Serializable
I am attempting to get my program to save the data inputted by a user. Currently, I am getting a:
java.io.NotSerializableException: java.awt.image.BufferedImage error
Now, what I have done is ...
0
votes
2answers
68 views
Two similar copy codes with Java, two behaviors
So I wanted to implement a function that copies a file into a new file of which I'll specify the directory (I'll create it) and then, as I found on stackoverflow, use the Files.copy function of ...
1
vote
1answer
43 views
Scanner only reading 1st token of a string
New to the Java Language,
The following is my bit of code. However the whole string isn't written to the file. Only the First token is written to the file. Any Explanations ?
import ...
0
votes
1answer
57 views
Read and Write with File channel [closed]
I need help on the file operation using FileChannel . My requirement is, I have to read a big file from the system, then need to check the file line by line. If certain strings found then need to add ...
0
votes
1answer
87 views
Java- export to jar- i/o problems
I work on Eclipse (Juno with JDK7), and the program runs (on Eclipse) fine.
My problematic lines are:
URL imageURL = new URL("http://www.idautomation.com/ocr-a-and-ocr-b-fonts/new_sizes_ocr.png");
...
1
vote
0answers
60 views
File.exists() security exception
I'm trying to write an applet for a website that needs access to a system on the LAN, so using a network path (\\THEBOX\DIR\SUBDIR). I'm checking if the directory exists before using it:
try {
...
0
votes
1answer
58 views
java File mkdirs and createNewFile won't work
I'm trying to copy and existing directory structure (no need for the file contents themselves, 0 length dummy files will do). However mkdirs() won't create the necessary directories, causing ...
1
vote
2answers
127 views
uploading an image to a php web server from android not working
I am using the camera intent to capture an image,then after that upload the image to a php web server.There are no errors generated but when i look into the destination folder for the images,there ...
-1
votes
2answers
50 views
Read Big File of alphanumeric data. Which return Data Type to use for quick retrieval of records [closed]
Suppose I have a big data file which stores Name,Address,phone number entries. I have to write a function which reads from the file and return the result in a quick manner. Which data type you will ...
0
votes
0answers
81 views
uploading an image to a web server from android not working
I am using the camera intent to capture an image,then after that upload the image to a php web server.There are no errors generated but when i look into the destination folder for the images,there ...
0
votes
1answer
46 views
ScheduledExecutorService usage and cleaning up of locked socket instream
Motivation for this question
I am running a huge product that runs on very expensive hardware. Shutting it down for testing purpose is not possible, nor is putting up a bad jar on production ...
-2
votes
2answers
89 views
java 6 IO - wrapped streams closing [closed]
Consider :
public static void read(String filename) throws IOException {
String charsetName = "UTF-8";
InputStream file = new FileInputStream(filename); // say no problem
...
2
votes
1answer
68 views
File Change Detector In Java ( 95% implemented but require help in one case)
My Project is : File Change Detector: The input to the application will be a group of directories and files. When the application runs for the first time it will simply summarize the names and sizes ...
0
votes
1answer
65 views
How do I load variables from a file back into Scala?
I have variables in scala that have their values written to an external file in this format:
1
2
0
0.5
0.62
This is my code that puts them in the file called "myVars.txt":
val pw = new ...
0
votes
1answer
100 views
Write float numbers to File
I have floating point numbers in two files. I want to write them in to single file. When I open the file after writing, I cannot see the floating point numbers. I can see some machine code or ...
2
votes
3answers
86 views
Displaying and copying output of a java program from command prompt into a file
i have a Java program which takes input from Users and displays output according to the input. The Program provides the user with a menu of options and the user is required to select one option from ...
1
vote
2answers
78 views
Read first 5 lines from file and then the rest
Disclaimer: This is homework, so I'm working under some restrictions.
I need to read the first 5 lines of a file and use these strings to change labels and buttons, and then the rest of the file is ...
0
votes
2answers
72 views
Understanding java.io library [closed]
It is since yesterday I'm reading to Java on-line documentation and I noticed that it focuses more on practice than describing the mechanism of that library.
Since there are a lot of classes in IO ...
0
votes
5answers
66 views
Search directory for any .XML file
I am trying to get a piece of code working. The aim is to check if there is an .XML file in a certain directory.
This is what I've got so far.
File f = new File("saves/*.xml");
if(f.exists()) {
...
0
votes
0answers
55 views
Existing File became zero size when change it's permission
I have a difficulty to change permission of existing file. What I want to do is, marshall xml and write it to a file. Because the apps is running under 'root' account, then the file is owned by root. ...


