The java.io package provides blocking input and output through data streams, serialization, and the file system.

learn more… | top users | synonyms (2)

0
votes
3answers
34 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
35 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
5 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 ...
0
votes
1answer
40 views

writing and reading a ByteArrayOutputStream but get read after end of file java.io exception

Writer out = new BufferedWriter (new OutputStreamWriter(new org.apache.commons.io.output.ByteArrayOutputStream())); PEMWriter writer = new PEMWriter(out); writer.writeObject(key); ...
-2
votes
2answers
13 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
50 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
47 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
40 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
26 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
42 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
62 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
38 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 ...
-1
votes
1answer
40 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
58 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
45 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
39 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 ...
-4
votes
0answers
25 views

Android: copy all files from some directories [closed]

can I, using the java.io.File class, import files in a scheme similar to this? from: /mnt/sdcard/testdir/  testdir1/   testfile.txt   testfile2.txt  testdir2/ ...
1
vote
2answers
67 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
38 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
56 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
32 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
71 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
60 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
64 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
69 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
66 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
68 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
62 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
50 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
38 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. ...
0
votes
2answers
49 views

How to pass a string to a local sever in java

I have created a local server and a client window to make them communicate with each other locally. The server and the client both are created. My problem here is I need the client to enter words in ...
0
votes
2answers
54 views

Detect if the file exists

Well the file "MyStore.obj" was attached along with the sheet I downloaded. And i'm supposed to read this file's content which is given with order of the contents.how can i make sure if it exists or ...
-2
votes
2answers
103 views

Reading from a text file and storing in a String

How can we read data from a text file and store in a String Variable? is it possible to pass the filename in a method and it would return the String which is the text from the file. What kind of ...
0
votes
1answer
91 views

Reading multiple objects from file

Is there a proper way of reading objects from file using the ObjectInputStream. The examples I've seen seems to rely on that exception is caught to end the reading. While it maybe works it does not ...
3
votes
1answer
70 views

In-memory file type objects in Clojure

I'm just getting started with Clojure and would like to call a Java method that takes as arguments an input file to read and an output file to which to write. Both appear to be of type java.io.File. ...
0
votes
1answer
126 views

java.io.StreamCorruptedException over sockets

I am developing a multiplayer snake game. The game seems to be running fine except it often(not every time) randomly throws the java.io.StreamCorrupted Exception type code :AC The full StackTrace of ...
2
votes
0answers
45 views

Fuse sshfs and java file Write fails

I have two VPS on a farm and I whant to connect them with sshfs, to share some directories on a java application. Source Destination ------------------------------------------- ...
0
votes
0answers
31 views

File move not working

I'm using the following method to moves files from one folder(source) to another(destination). I have added a check to see if the file exists which is returning true, but still the file is not moving ...
0
votes
1answer
25 views

java.io.* freezes netbeans in JSP

Whenever I am making a JSP page in netbeans, I try to import java.IO.* <%@page import="java.io.*"%> , it freezes the IDE. I am using windows 7x64 Pro. This happens in NetBeans 7.2.1 and 7.3. ...
0
votes
1answer
59 views

Why is my program denying access to create a file?

In the book I'm reading on Java, it demonstrates serialization by using a program that writes to a file and stores it away. I'm getting a strange error that I don't know how to read and it denies me ...
2
votes
3answers
54 views

Data structure for write/read bytes

I keep running into the case where I want some structure of let's say buffer size 4096 and I can write bytes into read bytes from it reset the read back to the previous read MOST IMPORTANT, not ...
0
votes
1answer
145 views

Java: fileoutputstream (access denied )

I am using AESCrypt open source library to encrypt file. This is my code String password="asdfgh"; String frompath=new String("C:/Users/sabertooth/Desktop/error/pnberror.png"); String topath=new ...
0
votes
0answers
94 views

Universal Image Loader for external storage files

Hello I use Universal Image Loader to load images from the device , now it works, but if the file path contains a "space character" the image does not get displayed and log records show that there is ...
0
votes
1answer
57 views

when i m trying to make .war file of my WEB-INF folder to deploy in tomcat6, cmd shows error java.io.Filenotfound Exception now., what can i do

when i m trying to make .war file of my WEB-INF folder to deploy in tomcat6, Microsoft Windows (Version 6.2.9200)' (c) 2012 Microsoft Corporation. All rights reserved.' C:\Program Files ...
0
votes
0answers
191 views

Send file from PC to Android via Bluetooth

I want to send a file containing file names from my PC to Android phone using Bluetooth connection. At the moment the file names are stored in an ArrayList and I am writing each item of the ArrayList ...
0
votes
2answers
246 views

BufferedReader not reading all lines

I am in the process of creating an Android application that communicates with the PC using a Bluetooth connection. I am attempting to send items from an ArrayList from the PC to the Android.
0
votes
1answer
120 views

How can I read a text file and display it using JoptionPane?

I am trying to take in user input and storing it in a text file, I was able to take in the input and storing it but now i am trying to display that input in a JOptionPane window. Can someone please ...
0
votes
1answer
57 views

How to read/change bytecode of a mp3 file? [closed]

I can read mp3 file and can play it. But now i want to change bytecode of a mp3 file. How i can see bytecode of a mp3 file ??? I also want to edit bytecode. I am searching Google for 2 days but can ...
0
votes
1answer
60 views

BufferedReader was never closed, but file was able to delete

Recently, I reviewed our application code, and I found one issue in our code. /** * truncate cat tree(s) from the import file */ private void truncateCatTreesInFile(File file, String userImplCode) ...
1
vote
2answers
178 views

Access pdf file from within my jar

I want to be able to open a help PDF file on mouse click, the PDF file is contained with the .jar (and imported to Eclipse). I am calling Help(); with a mouseListener (added via windowbuilder). The ...

1 2 3 4 5 9