Random access is the possibility of accessing any given record in a collection in the same time in contrast to sequential access in which distant records take longer to access than nearby records. An array is an example of a random-access data structure which can be contrasted to a list which ...

learn more… | top users | synonyms

0
votes
0answers
5 views

Seeking in AES-CTR-encrypted input

As AES in CTR mode is great for random access, lets say I have a data source created with a CipherOutputStream in AES-CTR mode. The library underneath—which is not mine—uses a RandomAccessFile that ...
-1
votes
1answer
22 views

I want to pull random products from db and show to users without repetition. [closed]

I have a website that shows random products to shoppers who are a member. Currently I keep track of the products they see, then I insert a field in db with the product number and member number and ...
0
votes
1answer
51 views

WAV File writing Issue from another wav file

In my program I had to remove certain frames from video and audio so that advertisments are removed. The video is stored in .rgb file and audio is stored in .wav file. The video is working fine. But ...
0
votes
1answer
27 views

undefined innerHTML (when trying to refresh)

hi everybody I'm trying to make a Random Generator of Discourses but I don't want to refresh the entire page in order to get a new string, so I thought that maybe innerHTML could be my solution. ...
-4
votes
1answer
212 views

Which is more efficient way in Java to read csv file CSVReader or RandomAccessFile? [closed]

I want to read a huge data file (csv format) containing rows and columns. I want to read and process individual columns in order. Which method is more efficient in terms of speed and memory ...
2
votes
3answers
131 views

Which data structure supports efficient deleting and random access?

I am looking for a data structure in which I can efficiently remove items and also supports random access. I also need efficient insertion but as the ordering of elements is not important, I thought ...
0
votes
1answer
31 views

Does FileStream.Seek() transfer data across the wire?

I need to access random parts of a very large file across the network. (SMB protocol) Does FileStream.Seek() actually read the data (copying down the entire file in the process) when doing a ...
0
votes
2answers
132 views

Displaying Information Within Random Access File

I have created an application that allows the user to enter their account number, balance(no more than 99999), and last name. The program will take this information and insert it into a .txt file at a ...
0
votes
1answer
129 views

Creating Random Access File for Bank

I need help with the following parts which I know are wrong: The spaces/truncating - I have no idea how to do this The file.seek - Probably wrong since I am not spacing/truncating to 8 characters. ...
1
vote
4answers
150 views

C++ nested iterators

Is it OK to have a nested iterator like the following? for (vector<type>::iterator i = list.begin(); i != list.end(); ++i) { for (vector<type>::iterator j = i; j != list.end(); ++j) { ...
0
votes
1answer
68 views

How can I read randomly a line in a file using JMeter?

Suppose that I have a file with a set of number (more than 20K) in a list like this: 85049293 86470391 87644095 85897840 87774526 So I would like to crate a JMeter script that will pick ...
1
vote
2answers
65 views

Implementation of a data structure with O(logn) access and O(logn) insertion?

Does anyone know of a data structure where I can access and delete the k-th item in worst case O(logn) and also supports the operation of inserting an item after the k-th item in worst case O(logn)?
0
votes
1answer
86 views

Does SSD seek time depends on how far we move? [closed]

On a HHD, I think fseek(+10) is faster than fseek(+100000) since the head have to move. Is it true ? But what's about a SSD ? There's still some small seek time, but does it depends on how far we ...
0
votes
2answers
217 views

Reading data from a Binary/Random Access File

I have a file in binary format having a large amount of data. If I have knowledge of the file structure, how do I read information from the binary file, and populate a record of these structures? ...
0
votes
1answer
279 views

StackOverflowError in recursive binary search in file in java

The filepointer gets stuck at a point resulting in a StackOverflowError. Can you point me to what exactly is wrong here? The error exactly is: java.lang.StackOverflowError I am doing a seek to find ...
0
votes
1answer
52 views

Find file with the most update information

I have a list of log files, and I need to find which one has a latest edition of a specific line, and all or none could have this line. The lines in the files look like this: 2013/01/06 ...
2
votes
1answer
114 views

Where is seek method for FileReader of Phonegap 2.2.0?

I need a method like FileWriter.seek(offset) for FileReader. I searched a lot but didn't found any thing? It is so strange for me that FileWriter has seek method, but FileReader does not have it! I ...
2
votes
1answer
77 views

Is there a way to set up random access to encrypted data in Android?

I'm currently trying to provide a transparent encryption/decryption layer to files stored on an Android device. I need random access to each of these files (necessary for search algorithm). The layer ...
1
vote
1answer
214 views

createReadStream multiple times on the same fd

In a previous question it seemed that the only way to do random-access reads from a file in node.js is to use fs.createReadStream() with its optional fd, start, and end fields. This worked fine in my ...
0
votes
2answers
191 views

How do I do random access reads from (large) files using node.js?

Am I missing something or does node.js's standard file I/O module lack analogs of the usual file random access methods? seek() / fseek() tell() / ftell() How does one read random fixed-size ...
2
votes
2answers
176 views

Speeding up file read

I have a 1.7G file with the following format: String Long String Long String Long String Long ... etc Essentially, String is a key and Long is a value in a hashmap i'm interested in initialising ...
0
votes
1answer
96 views

Random access file in PHP

Is there some PHP function or class that allows me to read a file like an array of characters? For example: $string = str_split('blabla'); $i = 0; switch($string[$i]){ case 'x': ...
1
vote
2answers
150 views

Random access to large files (needing support 64-bit file offsets) in node.js?

I'm thinking of porting some of my cross-platform scripts to node.js partly to learn node.js, partly because I'm more familiar with JavaScript these days, and partly due to problems with large file ...
0
votes
3answers
761 views

How can I generate a random number (or Cell) within a given range? Witout using the same result twice?

I am trying to generate a random Cell from specific range: I need to each cell Row to generate a random selection from a a specific column (range) below is a picture of my set up and my failed ...
-2
votes
2answers
74 views

How to determine if a number has been used in a variable previously? [closed]

How would I go about not saving the record if the user tries to enter a previously used ID number? I have tried a while loop, tho it works for the second time asking the user, it wont work after ...
2
votes
2answers
348 views

RandomAccess Interface, Why no methods?

I was reading Collections.shuffle(List) javadoc and then took a look at the RandomAccess javadoc: Marker interface used by List implementations to indicate that they support fast (generally ...
1
vote
2answers
913 views

Edit/Modify & Delete of record from a Random Access File in C

the program should modify or delete a specific record according to employee id, in modifying part it writes the modified record as a new one at the end of the file, the deleting part works only once ...
0
votes
2answers
151 views

Getting a random venue using actionscript with no repeat

Hi users of stack overflow I am currently struggling with randomizing my data via as3 and xml. I can load in the xml fine and generate a random venue however when I click on the random button I have ...
0
votes
3answers
68 views

get data in random order except 3 ids provided

Lets say I have table as below. create table t1 (id INT, tempData varchar(25)); and data as insert into t1 values (01, 'value 01'), (02, 'value 02'), (03, 'value 03'), (04, 'value 04'), (05, ...
9
votes
3answers
186 views

Efficiently choosing a random line from a text file with uniform probability in C?

This is essentially a more constrained version of this question. Suppose we have a very large text file, containing a large number of lines. We need to choose a line at random from the file, with ...
0
votes
4answers
182 views

Java - overwriting specific parts of a file

I would like to update specific part of a text file using Java. I would like to be able to scan through the file and select specific lines to be updated, a bit like in a database, for instance given ...
3
votes
2answers
123 views

Unexpected behavior while creating, writing and reading a Random Access File in C

I have been dealing with a problem with 3 programs from this book: C How to Program - Deitel They are related to the chapter 11 managing Files (Sequential and random access Files) in my studying ...
0
votes
0answers
80 views

High-level File Random Access and File System Allocation Method

There are libraries, in High-level programming languages, which allow Random Access to Files (e.g. RandomAccessFile in Java). What I'd like to understand is how these libraries are related to the ...
0
votes
1answer
104 views

QHash - hot to get a random key and value

I want to get a random pair with number n from my QHash. Now I do it this way: QHash<QString,QString>::iterator iterator = dictionary.begin(); iterator+= n; ...
0
votes
1answer
98 views

EOFException error at reading a RandomAccessFile

I am having some issues at reading bytes from with readInt() when using RandomAccessFile whenever I want to print the File I get EOFException. The same error appears in the last catch Statement when I ...
1
vote
3answers
205 views

Convert a text CSV binary file and get a random line from it in Python without reading it to memory

I have some CSV text files in the format: 1.3, 0, 1.0 20.0, 3.2, 0 30.5, 5.0, 5.2 The files are about 3.5Gb in size and I cannot read any of them in to memory in Pandas in a useful amount of time. ...
-1
votes
1answer
489 views

Random access file java [closed]

Im reading from a .csv file and I'm getting this weird numbers at the start of each line 12195820118109888100071.53 something like this, what do you think it could be my mistake while ((line = ...
0
votes
1answer
40 views

How to read and write data directly from disk partition on Windows with random access?

I can open a disk, and do some reads and writes (described here: How do I read a disk directly with .Net?), but I don't know how to seek.
1
vote
1answer
83 views

Re-reading a file using Random Access

I want to re-read a file by adding data to the file when it reaches EOF. But second read after adding data isn't working. This is my code File f = new File("sample.csv"); byte[] bb= ...
-1
votes
1answer
154 views

Downloaded jpg , apk files never open up but mp3 files open

I am struck in this strange problem . I am using the following method to download files : public boolean downloadSection(String link,String fileLocation,long currentlyDownloadedBytes){ try { ...
1
vote
3answers
180 views

Writing a random access file transparently to a zip file

I have a java application that writes a RandomAccessFile to the file system. It has to be a RAF because some things are not known until the end, where I then seek back and write some information at ...
0
votes
1answer
266 views

Random access encrypted file

I'm implementing a web based file storage service (C#). The files will be encrypted when stored on the server, but the challenge is how to implement the decryption functionality. The files can be of ...
2
votes
1answer
95 views

Compressed array of file paths and random access

I'm developing an file management Windows application. The program should keep an array of paths to all files and folders that are on the disk. For example: 0 "C:" 1 "C:\abc" 2 "C:\abc\def" 3 ...
1
vote
2answers
84 views

How is an array of object[]s stored in memory?

As I understand it, the elements of an array are stored contiguously in memory, and accessing a particular one it is done by adding the product of the desired index and the size of each element with ...
0
votes
2answers
234 views

Download a file through the Internet with RandomAccessFile

I was browsing the Internet for random Java code, and I found this source code for a download manager. It uses RandomAccessFile to download the files. The one thing I could not figure out though, was ...
0
votes
1answer
81 views

DeleteByName method not being removed from randomAccessFile

Hey my RandomAccessFile application is not working well for my deleteByName method. Basically i want this method to search the store for the Student and then remove it from the RandomAccessFile. The ...
0
votes
4answers
158 views

DeleteByName method not working for RandomAccessFile

Hey im having an errors with my DeleteByName method. The error is: The method delete(Student) in the type StudentStore is not applicable for the arguments (String) I know this is to do with the ...
0
votes
1answer
528 views

Add method not adding Student in RandomAccessFile

Hey my randomAccessFile application is not adding the student to the file. I have set up a student store using an arrayList and the added student is being added to the store but it is not being ...
0
votes
1answer
450 views

Another way to write students using RandomAccessFile without static array

I am making an application that stores student details in a file using RandomAccessFile but the only way that i have achieved this is by adding the store students a,b,c,d,e etc... into a static array ...
0
votes
1answer
187 views

Add method for RandomAccessFile

Hey i am stuck on an add method for my ArrayList store students which then writes the student store to a text file using randomAccessFile. So i need to be able to add a student to the store and then ...

1 2 3 4