Creates a random access file stream to read from, and optionally to write to, a file with the specified name.

learn more… | top users | synonyms

0
votes
1answer
23 views

RandomAccessFile - Chinese characters when reading

Field on file.dat are organized this way: NAME SURNAME NAME SURNAME ... I use this piace of code to write to the file: RandomAccessFile file = new RandomAccessFile(dir, "rw"); ...
1
vote
2answers
37 views

Reading a log file which gets rolled over

I am trying to use a simple program to read from a log file. The code used is as follows: RandomAccessFile in = new RandomAccessFile("/home/hduser/Documents/Sample.txt", "r"); String line; ...
0
votes
2answers
22 views

Renaming a RandomAccessFile

i have a RAF called data.bin and a temporary RAF called temp.bin. data = new RandomAccessFile("data.bin","rws"); temp = new RandomAccessFile("temp.bin","rws"); the temp file is ...
0
votes
2answers
23 views

Read an array of ints at once from RandomAccessFile

I am trying to read an array of ints from a RandomAccessFile. RandomAccessFile however only supports reading for an array of bytes. My code so far: public long getSumOfElementsFromArray(long start, ...
-2
votes
2answers
50 views

Writing to a file with RandomAccessFile#write() [closed]

lets say i have a program that makes a binary file called data.bin and i write a bunch of random information to it using data.write(item) like: RandomAccessFile data = new ...
0
votes
0answers
64 views

Read a large bin file

I want to read a large bin file which contains M successions of double numbers, which repeat in a predefined order as: A0, A1, A2... AN, B0, B1, B2... BN... (M times) I am not allowed to read the ...
0
votes
1answer
26 views

Confused about: RandomAccessFile.readFully(byte[] b)

lets say byte[] b = 1024 for(int k = 0; k < 10; k++) data.readFully(b); does the readFully() method increment by itself if it is put inside of a loop kind of like the nextLine() method? or ...
0
votes
1answer
34 views

readUTF works once, then throws EOFException

I'm writing to a RandomAccessFile like that: (in a LinkedList's subclass) file.setLength(0); for (Person person : this) file.writeUTF(person.getBlob()); Person.getBlob() returns a string of ...
3
votes
1answer
144 views

Read Random Access File in C#

Does anyone know if it is possible to read random access files in C#? I am trying to replicate the following function (from an old VB6 application) in C# - Open File For Random Shared As #100 Len = ...
0
votes
0answers
22 views

UTFDataFormatException when I try to display my JTable with account data

private void view() throws IOException { // TODO Auto-generated method stub viewframe=new JFrame("#Customer Accounts#"); viewframe.setSize(600,350); viewframe.setVisible(true); ...
3
votes
2answers
80 views

Writing out using a Bytebuffer returns differently from simple write out

I'm trying to write byte data to a file and part of optimizing it, I want to reduce the number of times I write out to the file. Currently, I'm using: try (RandomAccessFile out = new ...
0
votes
2answers
64 views

How do I write and delete Objects from a RandomAccessFile?

I am currently working on a school project for which I need to save my data to a RandomAccessFile. I figured that this is by far not the most efficient way, but I have to do it. Note: I have to use ...
0
votes
0answers
75 views

Java : how to write string to .txt as byte using RandomAccessFile

First of all I read many about this question. However none of them was my solution. I am trying to read string from console and write it to the .txt as byte. I tried FileWriter/BurfferWriter. But ...
0
votes
2answers
74 views

reading data from a randomaccessfile

Here is the function I have : // Read a record from the specified RandomAccessFile public void read( RandomAccessFile file ) throws IOException { account = file.readInt(); byte b1[] ...
0
votes
2answers
344 views

Does RandomAccessFile in java read entire file in memory? [duplicate]

I need to read last n lines from a large file (say 2GB). The file is UTF-8 encoded. Would like to know the most efficient way of doing it. Read about RandomAccessFile in java, but does the seek() ...
1
vote
2answers
64 views

How can I read from a read-only RandomAccessFile while a MediaPlayer is playing from it in a different position

I have a custom file format (similar to a zip file) that packs small files (small images, mp3 files) into 1 physical file. My android app downloads this file, and it displays one image from it. The ...
0
votes
0answers
101 views

RandomAccessFile; std::fstream

Does the c++ (c++11) STL have support for a RandomAccessFile? The question RandomAccessFile read/write start-finish position problem appears to touch lightly my question. I know std::fstream ...
0
votes
0answers
59 views

File pointer and length with java RAF

I'm not sure I understand correctly how things are laid out in a random access file in java. If I write in a single int to an empty file, that would take up the first 4 bytes, which would be positions ...
0
votes
1answer
29 views

Writing data into RandomAccessFile

In my project i need to create a file for each student and i thinki have the method created, here it is below public addStudent(String fullName, int grn, String formClass, String formTeacher) ...
0
votes
3answers
135 views

How to allow multiple threads to access a random access file at the same time in Java [duplicate]

Is there a way I can allow multiple threads to perform read/write operations on a RandomAccessFile at the same time, i.e, concurrently? Do I have to use any synchronization object, or can it be done ...
-1
votes
2answers
112 views

Is it possible open a RandomAccessFile with the default associated program? [closed]

I have a file loaded in memory, through the RandomAccessFile (in java). Do not put it in the disc because it is a temporary file, and it is very important not to be stored for their safety. Is it ...
0
votes
0answers
59 views

write nodes to file using randomaccessfile in java

I am wrote a binary tree and am making a seperate class file that uses randomaccessfile to write the nodes to a file. My goal is to write the initial tree, and then everytime a new leaf is added, it ...
2
votes
1answer
804 views

Android: Accessing File from Internal Storage Using RandomAccessFile

I am creating an app that needs to read data from a file. I was initially reading it from the assets folder using a BufferedReader and an InputStreamReader but I was running into memory issues (see ...
0
votes
4answers
382 views

new line in Random Access File in java

Whenever using the 'writeBytes' method of RandomAccessFile in java,it writes the text in the same line in the file. How can I get to a new line with RandomAccessFile only? (No BufferedReader).
2
votes
2answers
259 views

How Can save data in text file using random access file and update these data?

I'm confused how can I save my data for example I hava (Student ID , Name , Surname) the only Student ID is Integer, I want save these data to text file when I Press (AddButtton) and then I want to ...
-1
votes
2answers
317 views

how can I save data into text file by using random access file and then update these data?

I'm confused how can I save my data for example I hava (Student ID , Name , Surname) the only Student ID is Integer, I want save these data to text file when I Press (AddButtton) and then I want to ...
0
votes
0answers
33 views

RandomAccesFile writing hex value

So I've finally figured out everything I need to do for what I am trying to accomplish, which is simply changing a hex value in a file, and loading it in a game later on. I have the loading and ...
0
votes
1answer
217 views

Read String with RandomAccessFile from file with different encoding

I have a big file encoded 1250. Lines are just single polish words one after another: zając dzieło kiepsko etc I need to choose random 10 unique lines from this file in a quite fast way. I did this ...
1
vote
1answer
141 views

Random Access File and extra ASCII characters in Java

I have a Random Access File filled with Strings (I know that they are not really Strings, although it will help me to explain the problem). What I want to do is to view a certain String, let's say ...
1
vote
2answers
415 views

Search for a string in large file and save it's position in Java

I'm searching for a way to parse large files (about 5-10Go) and search for position (in byte) of some recurrent strings, the fastest as possible. I've tried to use the RandomAccessFile reader by ...
1
vote
2answers
318 views

Read external log file without creating file-lock

Trying to read a log file line-by-line (in Java). This log file is being written to simultaneously by another process (non-java program). I have 2 approaches - BufferedReader (BufferedReader br = ...
1
vote
3answers
136 views

search a string in file and insert content above

I try to search a string inside a txt-file and insert some specific content above it. Sadly the output looks quite different from what I expect. Can somebody give me a hint? This is how far I got! ...
0
votes
1answer
81 views

Having trouble releasing a Java FileLock

I haven't worked with nio much and I'm having some trouble with releasing a FileLock. Basically, in JVM-A I have a NON-SHARABLE write lock on a file which looks something like this: File lockfile = ...
0
votes
0answers
147 views

Creating Large Files in Java (2gb+)

2I'm currently working on a project to create a large random binary file (2gb to 10gb) and I'm at a loss for ideas. Obviously writing out 10gb worth of data would take forever and I need a timely ...
0
votes
1answer
148 views

Why does changing the way you initialise RandomAccessFile objects change FileChannel performance?

Im investigating the possibility of re-writing some code that bottlenecks on disk writes into java. The javadoc does not make clear why the first two code loops below would perform so differently to ...