Java class that reads text from a character-input stream, buffering characters so as to provide for an efficient reading of characters, arrays, and lines.
1
vote
4answers
32 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
4answers
40 views
Read file from a folder inside the project directory
In a JSP project
I am reading a file from directory. If i give the full path then i can easily read the file
BufferedReader br = new BufferedReader(new ...
0
votes
0answers
26 views
Error when using network stream.write
First thats a part of my server code :
while (true)
{
try
{
requestCount = requestCount + 1;
NetworkStream ...
-1
votes
3answers
34 views
Reading small parts of a text file into a text field in GUI
Im going to write a hotel reservation program for my final year at school. I am going to use a text file to have all the guests whose attributes include: Name, Surname, contact details etc. and I want ...
0
votes
2answers
27 views
instantiating Two arrays from two text files
I am trying to instantiate the String array cool with items from the file "cool.txt" and the same for the array warm except with the text file "warm.txt" the program works to an extent however many ...
0
votes
4answers
41 views
read from a file, split the line and store in an array JAVA
Okay guys first and foremost let me say that I am a NOVICE when it comes to programming in JAVA. I am teaching myself, so with that said please bear with me as I am doing the best I can with what I ...
0
votes
3answers
47 views
Java: How read a File line by line by ignoring “\n”
I'm trying to read a tab separated text file line per line. The lines are separated by using carriage return ("\r\n") and LineFeed (\"n") is allowed within in tab separated text fields.
Since I want ...
0
votes
1answer
56 views
What cause “java.io.IOException: BufferedReader is closed” on android?
I got ANR in my application. Base on logs I found that my application was killed with signal 3. In stack trace I get info that code:
if (mReceiver != null && mReceiver.isAlive()){
...
2
votes
2answers
33 views
How to get the content of an input stream in reverse order?
I am using a txt file for my level desing. I use the below to take the contents and convert to string buffer, then iterate through the lines to generate my game objects.
The the problem is that it ...
0
votes
5answers
49 views
Java-Convert String to int when using BufferedReader
How do you convert a String to int when using BufferedReader?
as far as i remember,its something like below:
System.out.println("input a number");
int n=Integer.parseInt(br.readLine(System.in));
...
0
votes
4answers
79 views
Turning a string into multiple arrays?
I'm a student who is learning java (just started this year. I just graduated so I can't ask my high school teacher for help, either), and I need some help on how to turn a string into multiple ...
1
vote
1answer
75 views
My application (sever/client) is blocked after using Readline
Im trying to make a tcp connection between server and client . server is programmed on c# and cliend on java... server is working fine... my problem is in this code:
try {
InetAddress address = ...
0
votes
3answers
66 views
Reset Java BufferedReader after parsing
I know this is done with mark() and reset(). However I'm very new to reading in files and my code doesn't work and I know my mistake is probably pretty obvious and stupid I just can't figure it out. ...
0
votes
2answers
36 views
Java Reader, read method for text file
I have a text file called test.txt with the word hello. I am trying to read it using Reader.read() method and print the contents to console. However when I run it I am just getting the number 104 ...
2
votes
3answers
77 views
Python writing binary files, bytes
Python 3. I'm using QT's file dialog widget to save PDFs downloaded from the internet. I've been reading the file using 'open', and attempting to write it using the file dialog widget. However, I've ...
0
votes
1answer
29 views
How to handle BufferedReader.readLine() goes to air and not return any value or exception in java? [duplicate]
I am reading a file through socket communication .
connection made.
while reading end of the file application hanged, it doesn't return any value/exception/null.still waiting for input.
How to ...
0
votes
1answer
42 views
Java: how to check if BufferedReder is Empty?(code included)
Im practicing some stuff for my java networking exam and I cant seem to figure this out.
I wrote a simple server program that is suppose to ask my client program a question and then wait fro a reply ...
0
votes
3answers
44 views
Moving from buffer to an array for manipulation in Java
I am making a program to take data from a .txt document, I have used the BufferedReader method which goes through the document. It then prints the the documents contents into the console. I cannot ...
0
votes
1answer
41 views
BufferedReader waits for line return
package sample_server;
import java.io.*;
import java.net.*;
import java.security.*;
/**
* Title: Sample Server
* Description: A simple telnet server
* @author A. Jones
* @version 0.01
...
-1
votes
0answers
21 views
grow heap frag case with BufferedReader
While processing multipart/form-data, i am getting error on BufferedReader
What should be done to overcome the high memory consumption while handling big files, this error comes at the end of the ...
0
votes
1answer
34 views
My application works fine on Android version 2.3.3 but does not work on android 4.2.2
Here is the JAVA code of my app:
public class Main extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
0
votes
0answers
43 views
Cannot get text value from BufferedReader [closed]
I have created an Android TCP server as well as a client. Both can communicate fine (in the sense that sent messages are registering).
Below, is the code I use to send a message from the client to ...
0
votes
2answers
32 views
is this correct ? how to load bytes from a file? [duplicate]
I need to load bytes from a file using Java. is this right ?
InputStream ips=new FileInputStream(file);
InputStreamReader ipsr=new InputStreamReader(ips);
BufferedReader br=new BufferedReader(ipsr); ...
0
votes
2answers
47 views
inserting nothing in a .setText() method After loading textfile with FileReader
i'm finishing a java project for school but i'm stuck at a certain point.
The assignment is to make a task-planner which should be able t save tasks u add/edit or delete and save that information on ...
0
votes
0answers
6 views
How to read nth word/int from a line in a text file?
I have a text file which I am reading line by line using...
BufferedReader br;
try {
br = new BufferedReader(new FileReader("test.txt"));
String line;
while ((line = br.readLine()) != null) {
...
0
votes
1answer
38 views
BufferedReader reads older input
Java beginner here. For testing, I made my own input class which uses BufferedReader. The code looks like this:
import java.io.BufferedReader;
import java.io.IOException;
import ...
0
votes
0answers
24 views
Titanium Android Module: Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required
I have created an Android module using a .jar library and with @Kroll.method methods I expose the desired functionality to the Titanium Studio Project.
But since the .jar library works fine if you ...
-1
votes
0answers
29 views
Skipping over BufferedReader if there is no input
With a server/client pair I am writing I want that every time they run their loop that they check to see if they have recieved any input from the other. The server sends out a message when the client ...
-4
votes
3answers
81 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
27 views
Output is a blank text file
Can you explain why my 2 method mergeFile() and mergeData() doesn't work, when i run it give me a blank text file. I really dont understand why ..... Here is my code:
String dirName, fileName;
...
-2
votes
0answers
87 views
Java: Bufferedreader read issue
I'm using the following code but it is not working as expected:
class name_reduction {
public static void main(String[] args) {
name_reduction nm_obj=new name_reduction();
...
1
vote
0answers
65 views
NullPointerException in a BufferedReader containing a URLConnection in Android but not a regular Java application [closed]
This code works fine in a regular Java application but when I run it in an Android application, it gives me a null pointer exception on the BufferedReader initialization. I've been searching and seen ...
0
votes
3answers
47 views
Most efficient way to read characters from a file?
While practising file I/O in Java, I came across an assignment where I has to rewrite a method that looks up what recorddata is associated with a given record ID. Now, the method I'm talking about is ...
1
vote
1answer
48 views
Java/Scala Strange behaviour of readline
i got a very strange and urgent problem. I hope you can help me.
I am trying to read the result of a command i am executing.
The Code never reaches the println-Statement. It is just "hanging up" the
...
0
votes
0answers
70 views
File still open in java(tm) platform se binary after close
In my application there are a two files (eg. Customer and Products) both wrapped in BufferedWrite, both used in the same background thread. When task is finished both files are closed, then in the ...
0
votes
1answer
36 views
Releasing BufferedReader.readLine() while locked with synchronized method
currently i have a code like the following one:
public class CtrlServer {
private ServerSocket ss;
private Map<Integer, Socket> s;
private Map<Integer, PrintWriter> out;
...
0
votes
2answers
59 views
Reading text from website doesnt work (BufferedReader, InputStream) Android, Eclipse
Im trying to read text from a website. Im using a tutorial.
Here is the code of my java
package nl.liacs.team6.stapp;
import java.io.BufferedReader;
import java.io.InputStream;
import ...
-1
votes
1answer
49 views
How can i record each keyboard input in text file?
I would like to record every keyboard inputs into text file without using keyListener How can I achieve this?
1
vote
1answer
37 views
Java BufferedReader reading form socket doesn't return null
I'm currently writing an app in Java that opens a socket and should receive and send data over it.
It is my understanding that BufferedReader.readLine() returns null once the buffer is empty. ...
0
votes
1answer
45 views
System.out.println() and BufferedReader mixing up output in console
I am currently working on a program, that uses a Buffered Reader to read input, and System.out.println() for output.
Here is my code:
public void chooseMethod() throws IOException{
int in = 0;
...
0
votes
1answer
26 views
Loading score for a game
In the game that I am currently working on I want to make it so that when you start the game you get the previous score you had befor you quit. I have already made a save file for the score with this ...
-2
votes
1answer
31 views
JCIFS: is possible get a file and use like BufferedReader?
I've a method that returns a BufferedReader, something like this:
File file = new File(fileName);
try {
BufferedReader br = new BufferedReader(new FileReader(file));
}
...
0
votes
2answers
90 views
How can I read and write objects from an arraylist?
I´m creating an arraylist in my
UserArchive class and add User-objects from my User class:
public class UserArchive implements Serializable {
ArrayList<User> list = new ArrayList<User>();
...
0
votes
2answers
92 views
How to use Buffered Reader in Java [closed]
Sorry if this is an obvious question, but I can't seem to get it. I'm working on an assignment for a Data Structures course. It involves pulling data from a simple .dat file. We had never used ...
0
votes
2answers
66 views
Read file, sort it, write to another file
For my assignment, I have to read from a file with 25 numbers, then sort it in order, then write it to another file. I can't think of a way to pass the array in my code (to the the string of an array) ...
3
votes
0answers
70 views
BufferedReader skipping random characters when reading from USB
I'm using a BufferedReader to read data from an USB gateway which periodically receives ZigBee network frames from an Arduino device.
This is what the frame is supposed to look like:
...
1
vote
1answer
32 views
Android: Can I use single InputStream for multi method?
I have some problem about using readline(). I have single inputStream it's from main class
private String url = "BoardLayoutSet/01_basic.templete";
private InputStream boardName ...
0
votes
1answer
31 views
RSA Decryption Printing NULL
I believe I am doing this right. How I see decrypting a file with RSA:
Read in each line of the file as a String
Set cipher.init(Cipher.DECRYPT_MODE, privateKey)
Convert String to char[] using ...
0
votes
1answer
173 views
Buffered Reader reads only first line in Text file?
here i am trying to use Buffered reader to read text file and create table in database, but Buffered reader reads only First Name from my text file. May i know What is wrong in my code... It WORKS ...
0
votes
0answers
56 views
How do I grab std output from a netcat listener subprocess from my Java program that I executed using Runtime.getRuntime().exec(cmdLine)?
I'm using netcat to test a udp port forwarder, and am unable to programmatically read the string from the destination (a netcat listener subprocess). What is the correct stream to read from my netcat ...




