Hot answers tagged file
3
It depends on how you want to use the data in the file.
In a typical case, you just treat the linked list as a sequence. When you're storing the data in the file, you ignore the links, and just store the sequence of data. When you need to read it back in, you read in a record, put it in a node, read another record, put it in the next node, and so on until ...
3
If the file is binary, you must use unformatted input functions with it:
double d;
if (!a0.read(reinterpret_cast<char*>(&d), sizeof(d))) {
// error occurred
}
std::cout << d << '\n';
Operator >> does formatted input, which means it expects text in the file.
EDIT
Sorry, originally used get() instead of read(), which is more ...
2
You don't want the read() part in your first call. Try this:
htmllines = open('filename.htm').readlines()
for line in html:
print line
If your HTML file is definitely on multiple lines not just one line as Dek suggests, then make sure you have the right encoding for your file - you might need to decode as follows:
htmllines = ...
2
Since for line in html: print(line) means print all the lines, it obviously print the entire files, one line at the time.
So, unless you file is "consolidated" on a single line of text, it's working. You can add some text output to ascertain it:
html = open('try.htm').read().splitlines()
for line in html:
print("Line:")
print(line)
print()
2
You want to add the following after if statement:
File file = chooser.getSelectedFile();
FileWriter fw = new FileWriter(file);
fw.write(foo);
where foo is your content.
EDIT:
As you want to write a text file, I'd recommend the following:
PrintWriter out = new PrintWriter(file);
BufferedReader in = new BufferedReader(new FileReader(original));
while ...
2
Use file locking: http://en.wikipedia.org/wiki/File_locking to tell other threads that output file is in use. If output file is exclusively used by your app then synchronized should prevent other threads from doing that portion of code at the same time. Or, finally, you can consider using IntentService to queue requests and handle them one by one
2
ofstream will not create missing directories in the file path, you must ensure the directories exist and if not create them using OS specific api or boost's file system library.
Always check the result of IO operations, and query system error code to determine reason for failures:
if (output_ file.is_open())
{
if (!(output_file << "abc,efg"))
...
1
IDLE saves its preferences in several files in the $HOME/.idlerc directory, creating the files (for example, config-main.cfg) as needed. The important ones, at least, are simple text files so you should be able to copy those files from your home directory on one machine to another. There are a few potential gotcha's to watch out for:
When you copy the ...
1
Are you sure you are setting the permission to write to SD card? Try setting this one:
WRITE_EXTERNAL_STORAGE
Edit:
Ok, try this:
Environment.getExternalStorageDirectory().getAbsolutePath()
Instead of:
Environment.getExternalStorageDirectory().toString()
Or even create a directory like this:
File dir = new ...
1
From looking at your example text file, you are starting substring one character late.
The extra character is there as a string is zero-indexed
string part = s.Substring(4, s.Length - 4);
My test code
string s = "Spec This ... bla bla";
Console.WriteLine(s.Substring(4,s.Length-4));
Console.ReadLine();
output:= This ... bla bla
1
Directly in HTML? No. You'd need to use server side PHP to open the file and extract the file inside that you want.
An example using PHP would be:
<?php
$content = '';
$zip = new ZipArchive();
if ($zip->open("yourzipfile.zip")) {
$fp = $zip->getStream('htmlfile');
if(!$fp) exit("failed\n");
while (!feof($fp)) {
$contents .= ...
1
Consider using TcpClient to connect to the server and send the data. I'm not going to write a full answer as you've indicated this is school work, but look at how the example writes data:
// Get a client stream for reading and writing.
NetworkStream networkStream = client.GetStream();
// Send the message to the connected TcpServer.
...
Only top voted, non community-wiki answers of a minimum length are eligible

