0
votes
2answers
28 views

Inputstream not being read

I am new to JavaEE, but yeah. Everything is working just fine on my computer while I'm running the code, however when I send it to my server, my input isn't being read.... So I'm guessing there's ...
0
votes
0answers
32 views

Issue with ObjectInputStream via Socket connection [closed]

I'm doing my first experimentation with Java Sockets. For a learning exercise, I'm creating a networked Battleships game. One machine is set up to fire a shot first. When that user clicks a button ...
1
vote
3answers
47 views

JTextArea not updating dynamically

I have a JTextArea inside a class that I want to update dynamically. Currently it is only displaying the text I append to it after all the processing is done. I have tried to implement the following ...
0
votes
3answers
30 views

Java check if user is typing in the console

Is there a way to check if the user is typing in the console window in Java? My program prints information it receives about client connections using System.out.print() and I want it to stop printing ...
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) ...
1
vote
2answers
68 views

Optimizing number of threads dynamically

I have two IO intensive processes that don't do much computing: one is getting and parsing a webpage and the other is storing some data obtained with the parsing in a database. This is going to repeat ...
-1
votes
0answers
21 views

How to trigger ENTRY_MODIFY. Java

So basically for the following code related to topic "Watching directory": for(WatchEvent<?> event : kC.pollEvents()) { switch(event.kind().name()){ case "OVERFLOW": ...
0
votes
2answers
26 views

Merging several ByteArrayOutputStreams into one FileOutputStream

I am splitting up a computation among eight threads and writing the results to a file, as follows: 1a. Each of seven threads processes its input and writes its output to its own ...
1
vote
3answers
33 views

Java reading serialized in objects from file into an arrayList

I'm attempting to read a file that contains serialized objects of type Contact into an ArrayList contactsCollection. The issue I'm having is that the objects Contact never get added into the ...
0
votes
3answers
55 views

Write real time data to file

How to write real time data to file in Java? I'm trying to get real time twitter feed to text file. Here is a code that I have written: public void onStatus(Status status) { User user = ...
0
votes
1answer
56 views

Java ArrayList null pointer exception

EDIT I've cleaned up the .equals method for string equality and changed the ContactsCollection initialization to: public static ArrayList<Contact> contactList = new ArrayList<Contact>(); ...
-2
votes
1answer
42 views

Getting integers from text file and work on array list in java [closed]

I have text file which is contains:" I have 3 apples and 1 banana.All people have 4 cars at least." I want to read this .txt file and get integers from it.I will strore integer variables in ...
-3
votes
1answer
20 views

Difference between SKIP_SIBLINGS and SKIP_SUBTREE [closed]

Is anybody aware of the difference between these two FileVisitResult? Directly from this oracle tutorial: SKIP_SUBTREE – When preVisitDirectory returns this value, the specified directory and ...
1
vote
0answers
29 views

About resolve method of the java.nio.Path

I thoroughly understand the use of resolve(path) and relativize(path). In the following snippet though there is something which is not very clear to me: public FileVisitResult preVisitDirectory(Path ...
-1
votes
4answers
63 views

Java I/O issue when dealing with files

I'm currently learning Java I/O , when I compile this code : import java.io.File; public class Main {public static void main(String[] args){ //Creation of the File object ...
4
votes
3answers
91 views

Can't get the try-catch-finally block to work

I have struggled a long time to get the try-catch-finally block to work. I'm a beginner in java, and are currently learning how to read/write/handle exceptions. In my task I'm trying to read from two ...
0
votes
1answer
45 views

How to check if I can delete a file?

How can I check that I can delete a file in Java? For example, I should be able to delete file C:/file.txt but I never will be able to delete the C:/ or Computer, or My Documents etc. Solution ...
-4
votes
0answers
38 views

java io and copy a file and overwriting [closed]

Write a program that will make a copy of a text file, line by line. Read the name of the existing file and the name of the new file – the copy – from the keyboard. Use the methods of the class File ...
0
votes
0answers
32 views

Using Java to Launch a Batch File Which Runs WMIC

First let's start with the code: import java.io.*; import java.io.IOException; import java.net.URL; public class InfoFileReader{ public static void main(String args[]) throws IOException{ ...
0
votes
1answer
12 views

Is FileVisitOption.FOLLOW_LINKS the only FileVisitOption available?

I see that the only constant available is FOLLOW_LINKS. On the other hand there is the method FileVisitOption.values() which returns an array of FileVisitOption values. I wonder, if it only has ...
2
votes
0answers
36 views

With exactly the same workload one server shows high cpu load

I'm running hadoop and have 2 identically configured servers in the cluster. They're running the same task, same configuration, same everything, and both are totally dedicated as hadoop task nodes ...
0
votes
2answers
59 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 ...
0
votes
1answer
40 views

Reading from a file using JAVA IO in android App

I have a file which an external JAR needs. I tried adding that file to assets and provided the path straight away. But that din't work and threw an error java.io.FileNotFoundException: ...
0
votes
1answer
32 views

why is EOFException used mainly by data input streams?

From Java API public class EOFException extends IOException Signals that an end of file or end of stream has been reached unexpectedly during input. This exception is mainly used by ...
1
vote
3answers
40 views

Java Excel I/0 issue

To work with my project I needed to learn about the POI Api from apache. So I decided to create a small program that creates a spreadsheet and fills its cells with some values . The problem is it ...
1
vote
1answer
47 views

Can I have a more example of FileAttribute?

Basically in the Files.createFile(Path fileName, FileAttribute<?>... attrs ); there is the possibility to insert a series of attributes. I am aware of the following possibility: Path path = ...
1
vote
1answer
60 views

Client/Server Program: Connection Reset

I have written a basic program to demonstrate client server interaction. Connection is getting established but unable to fetch the data from stream. It throws an exception stating the connection reset ...
-5
votes
1answer
38 views

File I/O Concept [closed]

I'm new in java. My assignment requires using the File I/O Concept The Problem Is when I run the code for the second time, it makes the file new and the clear, I want to write the new data with the ...
0
votes
1answer
73 views

No output when reading file in textarea

I have modified this example to read txt files in a text area, but I seem to get no output in the textarea. My code: if (returnVal == JFileChooser.APPROVE_OPTION) { File file = ...
-4
votes
3answers
77 views

Code can not read file [closed]

When i tried to run this program, it only show "Beginning of Read-in records list. But the program doesnt terminate, which means the program keep running, but it doesnt output anything. Could anyone ...
0
votes
1answer
42 views

Create/write/read a text file external to the Jar archive

To save the state of a Java programmed video game in a text file (it is an exercise for a school project, I can't use serialization), I have to create a text file and write in it with PrintWriter, ...
2
votes
1answer
51 views

Print to console while getting user input from Scanner

I'm writing a server program that needs to print information, such as clients connecting or disconnecting, to the console while requesting user input through the java.util.Scanner class. The user ...
-2
votes
3answers
52 views

FileIO - Exception in thread “main” NullPointerException

When I run the main method, the following kept popping up: Exception in thread "main" java.lang.NullPointerException I have checked my code, but unable to find any uninitialized variable. Can ...
0
votes
1answer
22 views

StandardOpenOption for directories and files. Files.create..()

Why the StandardOpenOption parameter is not present at all in the parameter list of this method: Files.createDirectory(path, FileAttribute<?>)? I am talking about the same StandardOpenOption ...
0
votes
1answer
26 views

FileChannel vs RandomAccessFile [closed]

Considering that FileChannel in Java 7 implements the interface SeekableByteChannel. Is there any use in using RandomAccessFile rather than FileChannel? Thanks in advance.
0
votes
1answer
27 views

Casting a SeekableByteChannel to a FileChannel

Directly from this oracle java tutorial: The following code snippet opens a file for both reading and writing by using one of the newByteChannel methods. The SeekableByteChannel that is ...
1
vote
1answer
43 views

What does “copy ByteBuffer” stand for in the following snippet?

Directly from this oracle tutorial, it's a bit explaining how to use the random access capabilities in java. The snippet is the following: String s = "I was here!\n"; byte data[] = s.getBytes(); ...
1
vote
1answer
23 views

FileChannel.open() vs RandomAccessFile in Jdk 7

I would like to know the difference between the following: FileChannel fc = FileChannel.open(); RandomAccessFile ra = new RandomAccessFile("RandomFile","rw); Since Java 7 the class FileChannel ...
0
votes
1answer
29 views

Read files and insert data count into JTable

How to read files and insert data count into JTable? I have n number of txt files. What I need to do is to read data from each file and insert the data count of each corresponding file into java ...
2
votes
1answer
18 views

Nio bytebuffers (by channel) against IO BufferInputStream

Which of the two would be the best choice and in which circumstance? Clearly there is no sense in using a file channel for a very small file. Besides that, what are the pro and cons of the two ...
-2
votes
1answer
54 views

Program does not save File

I am not putting all my classes here but here is: CheckOptionPanel package main; import java.io.*; import javax.swing.*; import java.awt.event.*; import java.awt.*; import javax.swing.JOptionPane; ...
-5
votes
2answers
53 views

How do I sum up the data in a file in Java? [closed]

I have previously done my research and I couldn't find anything that could help me. I have a file which has a persons name and then their grades next to it. I want to take the grades for each name and ...
0
votes
2answers
21 views

Byte [] used as a BufferInputStream ok but

Ok I know a buffer is actually an array of byte, however I have never seen the following declaration (taken from here) URLConnection con = new URL("http://maps...").openConnection(); InputStream is = ...
0
votes
1answer
16 views

Oracle snippet does not give back results

Here I have the following bit of code taken from this oracle java tutorial: // Defaults to READ try (SeekableByteChannel sbc = Files.newByteChannel(file)) { ByteBuffer buf = ...
0
votes
1answer
29 views

RandomAccessFile vs FileChannel.open(path);

What kind of FileChannel object does the FileChannel.open(path) method return? Is it still random access allowed as if it was as following? RandomAccessFile ra = new ...
1
vote
1answer
63 views

is Scanner in Java enough for reading input from a text file?

what i'm going to do i'm going to build a phone book program in Java to do the following jobs: read from two text files, instruction.txt and phonebook.txt phonebook.txt includes some phone entry, ...
0
votes
1answer
48 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
1answer
33 views

difference between bytebuffer.flip() and bytebuffer.rewind()

I am aware that flip() set the current buffer position to 0 and set the limit to the previous buffer position whereas rewind() just set the current buffer position to 0. In the following code, either ...
-1
votes
0answers
47 views

How can I manipulate the data in a JTable dynamically?

I am creating an application that requires me to use a JTable to display the data. The data for the JTable is stored in a local file and updates when the user modifies a file in the cloud file ...
0
votes
2answers
70 views

Creating byte array to image using ImageIo [duplicate]

I am reading a binary file and changing some values and creating a image file from that. Here is my code public class Capture { private static final String inputFile = "E:\\Capture_Mod1.BIN"; ...

1 2 3 4 5 34