Tag Info

New answers tagged

3

You need to open the file as a binary stream, not a text steam. As text it is getting encoded as Unicode surrogates. Use File.OpenRead with a byte array. You can also use File.ReadAllBytes but I don't recommend it since a large file will cause an OutOfMemoryException.


1

As far as I can tell, DFSInputStream only refreshes its list of located blocks on open and when it has encounters an error trying to read from a block. So regardless of what you do in the output stream, the input stream won't be updated. If you are trying to implement a single-producer/multiple-consumer system, you might look into using something like ...


0

Try to changing the value of the Valid Architecture found in Project > Build Settings > Architectures from the default armv6 armv7 to armv7. Hope this will helps.


0

Seems this is the best solution I can find: val reader = new BufferedReader(new InputStreamReader(in)) val buffer = new Array[Char](1024) out.print(cmd + "\r\n") out.flush val firstLine = reader.readLine.split("\\s") if(firstLine(0) == "OK") { def read(readCount: Int, acc: List[Byte]): Array[Byte] = { if(readCount <= 0) acc.toArray else { ...


1

File.CreateText(npath) not only creates the filename on disk but also opens it. So either close it in your CreateFile method or change it to return a stream. public static string CreateFile(string path, string title) { string npath = path + title + ".txt"; if (!File.Exists(npath)) File.CreateText(npath); //<-- File is not closed !!! ...


0

Once you get the line in string using getline, use strtok. char myline[] = "7, john doe, 123-456-7891 123 fake st."; char tokens = strtok(myline, ","); while(tokens) { //store tokens in your struct values here } You'll need to include #include <string.h> to use strtok


0

You can still use the getline approach for tokenising a line, but you first have to read the line: vector<Person> people; string line; int lineNum = 0; while( getline(inputFile, line) ) { istringstream iss(line); lineNum++; // Try to extract person data from the line. If successful, ok will be true. Person p; bool ok = false; ...


1

I'd read the file line-by-line using normal getline(). Then, put it into a stringstream for further parsing or use string's find() functions to split the text manually. Some more notes: I don't understand your first question about using a class. If you mean for Person, then the answer is that it doesn't matter. Using assert for something you don't have ...


2

Found out why it was doing that. So in my code is like this: @Override protected final void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { addQuery(req, resp); onPost(req, resp); } And since I was calling some methods on req (like req.getHeader("X-Forwarded-For"), it seemed to be reading all of the ...


0

Don't forget you can only write to $OPENSHIFT_DATA_DIR (which is ~/app-root/data) or /tmp. Where are you writing your file to?


0

No, writeHead does not invlove I/O. It does not read or write from network/disk. It simply writes into response (http.ServerResponse object), which resides in the memory. Each response you create/send is a separate object. You can call it only once per response, so writeHead cannot block. The http.ServerResponse implements a Writable Stream interface for ...


0

In Erlang, strings usually contain Latin-1 or Unicode codepoints, so you should be looking for 228 for "ä", 246 for "ö" and 252 for "ü". Your literals section should have made this work transparently, except for the fact that H is a single character, and you're comparing it to strings ("ü", "ä" and "ö"). The corresponding character literals are $ü, $ä and ...


0

As @spotirca has already pointed out, response.writeHead() isn't cached, but I think it's worth expanding on the other aspect of this question, the use of pipe(). pipe() is actually a red herring here, the issue is whether to redirect to use the existing HTTP response or to start a new cycle. It's important to understand that the two solutions do very ...


0

No, writeHead is not synchronous, it does not block the event loop. I would not advise using pipe in the particular example. I have 2 reasons for that: /login/index.html, being a static file, can be cached, hence lower network transfer. Useful especially with slow client connections. Consistency: the login url is always the same. But this is a matter of ...


2

You can achive the goal to use read(...) and readLine(...) in one class. The idea is use BufferedReader.read():Int. The BufferedReader class has buffered the content so you can read one byte a time without performance decrease. The change can be: (without scala style optimization) import java.io.BufferedInputStream import java.io.BufferedReader import ...


0

Uhm - postFix.clear() at the end of the loop? Also, try converting the loop to this: ifstream file("tests.txt"); while(file.good()) { file >> input; ... cout << "PostFix is : " << postFix << endl; postFix.clear(); }


1

Honestly - you have quite a lot of problems going on in this code, and I'd suggest that your main problem is that you're perhaps still wrestling with encapsulation. Your code uses a mix of C and C++ styles which are guaranteed to make code hard to read and thus maintain, and that's why you're here and people are struggling to give you the answer. That said, ...


0

I see at least one obvious error that may produce undefined behavior. You are allocating 50 bytes but read up to 100. char data_row[50]; int i=1; while(!file.eof()) { file.getline(data_row,100); I would suggest change 50 to 100 in this code.


2

One fairly popular trick: instead of blocking in read(), block in select() on both your serial-socket and a pipe. Then when another thread wants to wake up your thread, it can do so by writing a byte to the other end of that pipe. That byte will cause select() to return and your thread can now cleanup and exit or whatever it needs to do. (Note that to ...


1

As soon as the statement is exectued, eg store['df'] = df. The close just closes the actual file (which will be closed for you if the process exists, but will print a warning message) Read the section http://pandas.pydata.org/pandas-docs/dev/io.html#storing-in-table-format It is generally not a good idea to put a LOT of nodes in an .h5 file. You probably ...


11

Use lift (or liftIO) instead of liftM. > :t val >>= lift . fn val >>= lift . fn :: MaybeT IO [String] liftM is for applying pure functions in a monad. lift and liftIO are for lifting actions into a transformer. liftM :: Monad m => (a -> b) -> m a -> m b lift :: (Monad m, MonadTrans t) => m a -> t m a liftIO :: MonadIO ...


1

AFAIK signals are the only way to break any thread out of a blocking system call. Use a pthread_kill() aimed at the thread with a USR1 signal.


0

Whenever a file descriptor is unavailable for reading, it'll return EBADF (fd is not a valid file descriptor or is not open for reading). When you'll get EBADF, you can close the fd and free up the thread.


2

It really doesn't make sense to write a file in another file. What you want is to write the contents of f1 in f2. You get the contents with f1.read(). So you have to do this: with open('file_to_read.pdf', 'rb') as f1: with open('file_to_save.pdf', 'wb') as f2: f2.write(f1.read())


0

To copy a file that is being used by another process, we have to make use of two services in Windows, and you'll need to verify that these services are not disabled: Volume Shadow Copy Microsoft Software Shadow Copy Provider They can be left as Manual startup, so they don't need to be running all the time. For this, we can use any 3rd party tool. ...


0

I think the problem is the pdf format,you should use some pdf library,just like pyPdf


4

If your intent is to simply make a copy of the file, you could use shutil >>> import shutil >>> shutil.copyfile('file_to_read.pdf','file_to_save.pdf') Or if you need to access byte by byte, similar to your structure, this works: >>> with open('/tmp/fin.pdf','rb') as f1: ... with open('/tmp/test.pdf','wb') as f2: ... ...


3

The intensive processing done in doSomething is blocking the EDT, preventing UI updates. Use a SwingWorker instead to perform this functionality. Use execute to start the worker. Move any required calls to console.write to either doInBackground or done.


0

You might try calling invokeAndWait() in place of invokeLater(), but in fact there is not enough information to be sure of an answer here. I think of invokeLater() as "put this in your queue of things to do", and invokeAndWait() as "put this in the queue of things to do, and I'll suspend while you do them". I don't know if this change will fix your ...


-3

If I understand true you are sending "s" to append but s is final valued can't be changed after first value initialized.


0

I think you're looking for Thread.sleep(milliseconds);. Using this until the user is done, you should get what you want. Next time, please elaborate on your questions.


0

The thread that listens to the user console , Generates an interrupt when the user starts typing, while the other thread that prints the information need to reset the interrupt, all you have to do is implementation of the scenario.


0

No, there are no ways to do that directly using the console (that I'm aware of) - the content of the console will only get sent to the application once enter is pressed and will then be available to the Scanner. One way to solve it is to make your own console, that you can read and write from. Then you'll be able to do anything you want really (including ...


1

Mobile device environments such as Android have limitations w.r.t the amount of memory that can be consumed by an application. Hence, reading large files to an in-memory data store as done in your code (using StringBuffer) is going to throw an OutOfMemory error. Take a look at this question to know how you can overcome the problem.


1

PNG is not built for speed. It's slower than jpeg and no smaller than tif. If you're stuck with PNG, no other optimisations will make any difference. For example: $ time vips avg wtc.tif 117.853995 real 0m0.525s user 0m0.756s sys 0m0.580s $ time vips avg wtc.png 117.853995 real 0m3.622s user 0m3.984s sys 0m0.584s where "wtc" is a 10,000 x ...


0

Two things which I would suggest. 1. Try firing the query from the JasperReport itself rather than storing it in Arraylist and then passing it to report. 2.Use Report Virtualizer.Depending upon your need you can either use Swap Virtualizer or Gzip virtualizer. Jasper claims that Gzip virtualizer compresses the jasper object to 1/10th of the original jasper ...


0

I may have misunderstood your question, but if you are passing in an absolute path and it works, but a relative path in the code doesn't, you may need to add Rails.root to the file path. You can join sections of path together like so: file_name = Rails.root.join(start_dir, ARGV[0].chomp)


0

This is a quick & dirty solution that uses a helper function and a global variable. Use itertools.groupby (using helper func and global var) to split your input on the fly into chunks of individual datasets Then handle each header section individually and read in each dataset in its own numpy array Example on some trivial dummy data import numpy as ...


0

If this is Java (you didn't say), then you can start the jvm with the -Xmx parameter specified. Also, you might reconsider whether or not your app really needs to load all of that into memory at once.


3

If the line that messes it up always begins with EFF, then you can ignore that line quite easily: np.loadtxt(str(z[1]), comments='EFF') Which will treat any line beginning with 'EFF' as a comment and it will be ignored.


1

You want something like this: for line in File: fields = line.split() #fields[0] is "EFF", fields[1] is "3500.", etc. The split() method returns a list of strings, it does not modify the object that is is called on.


3

>>> text = """some ... multiline ... text ... """ >>> lines = text.splitlines() >>> for i in range(len(lines)): ... lines[i].split() # split *returns* the list of tokens ... # it does *not* modify the string inplace ... ['some'] ['multiline'] ['text'] >>> lines #strings unchanged ['some', ...


2

Instead of using threads directly you should just create a ThreadPool to which you add a number of Runnables which do the actual work. From your description a CachedThreadPool might be suitable. Check out http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ExecutorService.html for some guidelines how to implement.


1

Well dynamically adjusting thread count should be no problem (using ThreadPoolExecutor for example). But it looks to me that the optimal number of threads is limited by two factors: The network bandwidth for your "downloading threads" The maximum number of allowed database connections for your "database threads" I'm not sure if the downloading part ...


1

To read the numbers, use the skiprows parameter of numpy.loadtxt to skip the header. Write custom code to read the header, because it seems to have an irregular format. NumPy is most useful with homogenous numerical data -- don't try to put the strings in there.


1

If you're using IntelliJ or Android Studio, the following StackOverflow link might be your ticket. The selected answer is pretty thorough. http://stackoverflow.com/a/16598478/413254


0

You should reverse the order of reading. That is, in the first pass read from image 1 to image N, then in the second pass read from image N to image 1, then in the third pass read from image 1 to image N and so on. That way you'll hit the disk cache more. Processing (or at least loading) several images at once, in different threads, might benefit the ...


0

You should ask yourself, How much time it takes to compute whatever you are computing on one unit (either a full image or a segment of it). During this time, how many units of image you can read (Let's say N). I don't know how to make reading of single image unit faster but there is something else you can try. Create a shared/global variable to hold the ...


0

Memory mapping, especially since you plan to re-read images several times will be the fastest method to get the data into RAM with as few copies as possible. Using "clever tricks" like unbuffered reads to take advantage of DMA is not advisable since this will not use buffers, which is orders of magnitude faster than disk. This may be an advantage when ...


0

It's not wholly clear whether your intent is to identify the lines to be replaced by their value, or by their line number. If the former is your intent, you can get a list of lines like this: with open('test','r') as f: oldlines = f.read().splitlines() If there's a danger of trailing whitespace, you could also: Then you can process them like this: ...



Top 50 recent answers are included