The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
49 views

PHP ini vs array performance

I wonder what is faster: loading/including a php file that contains some static data in an array within a function or parsing an ini-file that contains the data and puts it into an arary I need ...
0
votes
3answers
21 views

Pick out country code and corresponding domain from text file

I have a text file like: en-US -> www.google.co.uk en-UK -> www.bbc.co.uk es-CO -> www.somedomain.com I want to be able to pick out the country/language type for example en-US and the ...
3
votes
1answer
37 views

PHP Page timeout when aborting readfile

I have an simple php view which looks like this: header('Content-Type: image/png'); readfile($this->image); exit(); In this example $this->image is for example ...
0
votes
6answers
38 views

Why read() from a file always endwith a breakline

test.c int main() { int fd = open("/test/aaa",O_RDONLY); char * str; int len; str = (char*)malloc(sizeof(char)); len = read(fd,str,100); close(fd); printf("%s\n",str); ...
0
votes
1answer
28 views

Java reading and writing ArrayList type Contact to GUI

EDIT I've made several corrections and am now able to compile. When attempting to add a contact to the file I receive a null pointer exception at line 13 of the ContactsCollection class: for (int i ...
0
votes
3answers
58 views

Java utilizing ArrayList to write and read contacts(object) to file with GUI

I'm writing a pretty simple program GUI program that emulates a cell phone. The "cell phone" has four main buttons: phone, contacts, message, and apps. I've coded all the GUI and hit a snag while ...
0
votes
1answer
23 views

Trying to move a file from a python client to a c# server

I am trying to copy a jpg image from a c# server in one PC to a python client in another. The idea is simply to read the image content: string text = File.ReadAllText(newPath); //or ...
0
votes
1answer
19 views

read from file into textbox corona

I want to read from a file into text box , where user can add more data then it will go as sms how can I do that i try some ready code , but always not working enter code here ...
-1
votes
3answers
49 views

Reading File Byte by Byte, gives corrupt data

So I was trying to write a C++ program that reads an entire file to the memory (binary). the memory block is obviously a char array. File reading is successful, but when I loop through the values, ...
0
votes
0answers
28 views

Read last line from a file java

So I am trying to read a file in Java It works fine with me, unless the last line is empty it just ignore it. I need to read this empty line to, any suggestions. Thanks in advance Here is my code ...
0
votes
1answer
68 views

How to read docx file content in java api using poi jar

I have done reading doc file now i'm trying to read docx file content. when i searched for sample code i found many, nothing worked. check the code for reference... import java.io.*; import ...
0
votes
0answers
13 views

readObject() deletes variable value

In my Java android application, I write some Object to file, and then read it, to check if it was written correctly. Object is not serializable so I had to override writeObject() and readObject() ...
0
votes
1answer
64 views

php - let the visitor download a remote file, chunk by chunk (range)

It's a recurring question on StackOverflow and i've browsed to all existing suggestions unsuccessfully. Here's what I'm trying to achieve: - visitor comes to my webpage and i have to send him a very ...
-1
votes
0answers
30 views

AS3 AIR best way to store permanent vars in PHONE app

I am creating an AIR app using as3. I want to store settings and a "PURCHASED" var in a text file. If the one of the stored vars equals "Purchased" then I will call some code, if not I call other ...
0
votes
1answer
49 views

Reading Fractions in a txt file java

I've been trawling the internet for help with this, but i can't find it so i'm resorting to posting. I have a txt file that is formatted like this 1/2 0 1/6 6/11 1/6 2/10 I need to read each of ...
-2
votes
3answers
58 views

File opened with readfile is not being shown [duplicate]

<p> <?php $filename = $_GET['package']; echo readfile("$filename.txt"); ?></p> This is a part of my html, and I want to use this url to read the filename of a txt: ...
0
votes
1answer
36 views

File is not getting uploaded to server

I am uploading audio file from my android application to server.Upload code is running on my side but not file is not getting upload on server.Here is the code what i m using .I have also commented ...
3
votes
4answers
90 views

C# - Most effective way to periodically read last part of a file

I want to periodically read a log file that is also being written to. The program will be periodically reading the log file contents and parsing it to extract some values. But I do not want to read ...
0
votes
1answer
28 views

homework:Bankers Algorithm,read matrix txt file

Bankers algorithm: I am trying to read from txt file into 4 variables. allocation,Max matrix/ available and request vectors. i am stuck as to how to read it properly. The txt file first value is ...
1
vote
1answer
49 views

Why does a blank line in a text file cause java.util.NoSuchElementException?

If you have a text file: AAA:123:123:AAAA BBB:456:456:BBBB At first when there is no blank line in the text file and you read and retrieve data. Everything is fine. When you write the file into a ...
2
votes
2answers
55 views

Reading from a file, java using Scanner

I have been trying out reading my file using Scanner. The error i am getting is NoSuchElementException: No line found All of the arrays are String arrays to store information from the file. The ...
0
votes
1answer
26 views

How to rename a batch of files to a name that exists in the first line of each file

I need to rename a batch of files in a single directory to the characters between the backticks on the first row of the file contents. File name: schema.stored.procedure302 First line in the file ...
1
vote
1answer
41 views

Automatically read a file - easy

This should be a really easy question, but I just cant seem to get it done, I have a section of code calculating X Y points on a graph, then saving them to file. If a certain condition is met I want ...
0
votes
1answer
108 views

Main thread not responding when using backgroundworker in c#

i have a program that uses several background workers that continuously load and read text files (size can up to 1MB) and update to oracle database. The problem i am having is whenever the ...
-2
votes
1answer
35 views

Java, read a line of text and write in seperate file [closed]

This is very stupid to ask but I want to know. I have to read a line of text and write in seperate file. I know how to read a line and work on that text but I don't know putting both together. I have ...
0
votes
0answers
59 views

multiple writefile and readfile in named-pipe

I need to pass some string by pipe. we can't pass a pointer by pipe and we must pass data. for passing a string we can send an array of chars. but I don't want to use array. I need a way to send ...
1
vote
2answers
58 views

vbscript - read data from file with certain extension

I am working with a VB script to read data from a text file. It works fine. My challenge is that the file name changes everyday with date appended to it. The file is a text file and end with .TXT ...
-1
votes
0answers
74 views

What's the most efficient way to read large text file and print it in text area using SwingWorker?

I am trying to read a text file (30MB) and print its content in the text area in real time. The problem is I have nearly 700 000 records and after printing ~150 000 my program starts to work very ...
0
votes
1answer
44 views

readFile method does not show results at console

This is my question : a method readLine that reads a line from the file specified in fileName and returns the line a String. What I am trying to do is I read and write some info into text ...
0
votes
2answers
34 views

java.util.NoSuchElementException Error

I try to read a whole line from text file and display them in different way. For example, 123456J;Gabriel;12/12/1994;67;67;89; But the result in console would be like : 123456J Gabriel ...
0
votes
1answer
32 views

ReadFile and Split info

This is my question. (f)Define a method, public String toString(), that returns a String consisting of the Student object’s admin number, name and average score. (h)Define another ...
0
votes
1answer
60 views

Read only lines that contain certain specific string and apply regex on them

Here's my code: I have a script that reads a file but in my file not all the lines are similar and I'd like to extract informations only from lines that have I DOC O:. I've tried with an if condition ...
0
votes
2answers
43 views

How to read a line from file given its number?

I have a file that contain 100 line each line contain one tag I need to obtain the tag value given its rank which is the "id" of TagVertex Class public abstract class Vertex <T>{ ...
3
votes
1answer
60 views

Session variable is not working in readfile php method

I've the php code as below. The variable $_SESSION['url'] has value and printing as it is. Its not working if I called the session variable. session_start(); header('Content-type: application/pdf'); ...
0
votes
1answer
43 views

Which PHP function should one use to open files on a server? [duplicate]

I want to open a file on a remote server (e.g. http://example.org/script.php?param=000001). PHP provides several of those methods and I was wondering which method I should take and why? Are there any ...
0
votes
0answers
47 views

between createprocess and create two pipe communication's confusion

The description almost so, I want to call CreateProcess in the main below to create a ffplay.exe.The STARTUPINFO struct is: STARTUPINFO siStartInfo; ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) ...
3
votes
2answers
76 views

skip some rows in read.csv in R

I have a csv file which I read using the following function: csvData <- read.csv(file="pf.csv", colClasses=c(NA, NA,"NULL",NA,"NULL",NA,"NULL","NULL","NULL")) dimnames(csvData)[[2]]<- ...
1
vote
0answers
42 views

Using the scanner class to read a file

Im trying to read a text file called "test.txt" with the scanner class. In the txt file its just a sentence like: "This is a txt file". This sentence is what I'm trying to get written out. But all i ...
1
vote
3answers
182 views

Read an Image/file from External storage Android

I'm trying to load an image from external storage. I set the permissions, I tried different ways, but none of them works. BitmapFactory.Options options = new BitmapFactory.Options(); ...
0
votes
1answer
266 views

read txt file into a sorted linked list c++

just started to learn about linked list and have to make a OOP to read, sort, and display some file. Here's the format of the txt file: 20 john adam george . . . the first number ...
1
vote
1answer
36 views

ReadFile COM full batch

I'm using winapi (in C) to read a batch from a comport using the following creating the port: hSerial= CreateFile(COM5, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL ...
1
vote
2answers
54 views

How to read a .sil (SmartInspect file) log file using c#

I am currently using SmartInspect logging tool in my c# application, and now I am able to get the log files, and the log file is having extension ".sil" (ex:log-2013-04-04-08-22-05.sil"). Now my ...
0
votes
1answer
37 views

Download successful but only part of the file is downloaded

I want my users to be able to download a video once they click on the download button. When they click to download it downloads fine but it only downloads about 200 bytes of the total 40mb. What is ...
1
vote
2answers
44 views

Including source file name on readfile?

I have a very simple hide-download-path-script setup like this: On index.html I have this link: <a href="savefile.php">save</a> On savefile.php I have this bit of code: $file = ...
-9
votes
1answer
90 views

How to read from text file to array? [closed]

what's up everybody, I have this problem in my code and I couldn't figure out how to read from text file and put it in 2-dimension array of double type array [1024,8] in c# . 0 148.9 19.4 ...
-1
votes
1answer
152 views

Reading mp4 files with PHP

I'm trying to read mp4 file with PHP and what I'm doing now is this: <?php header("Content-Length: filesize"); readfile('file.mp4'); ?> but this way I can't skip or even go back until the ...
1
vote
3answers
98 views

LISP: How to read content from a file and write it in another file?

I want to write a function that has as arguments the names of the two files and copies the content from the first file to the second one. So far I wrote a function that reads from a file: (defun ...
1
vote
4answers
99 views

How to identify consecutive lines with specific features using for loop in Python?

I am new to Python. I am now manipulating huge data set. The format is like this: 1 1 1 1 1 1 1 1 A 1 1 1 1 1 1 1 1 1 1 1 1 A 1 1 1 1 1 1 1 1 1 1 1 1 A 1 1 1 1 1 1 1 1 1 1 1 1 B 1 1 1 1 1 1 1 1 1 1 1 ...
-1
votes
2answers
115 views

JAVA - Write binary number to a file and read it

How can i write to a file a binary number without it to cut the zeros . I'm writing like this : byte[] b = new BigInteger("1011010101010110", 2).toByteArray(); FileOutputStream fos = new ...
0
votes
1answer
192 views

How to send XML file from smart device to PC in C#?

I'm developing a web application for a handheld RFID reader (windows CE), and I'm trying to send an XML file from the RFID reader to a laptop throgh wireless network or GPRS. The code works properly ...

1 2 3 4 5 9