-1
votes
0answers
21 views

How to trigger ENTRY_MODIFY. Java

So basically for the following code related to topic "Watching directory": for(WatchEvent<?> event : kC.pollEvents()) { switch(event.kind().name()){ case "OVERFLOW": ...
-3
votes
1answer
20 views

Difference between SKIP_SIBLINGS and SKIP_SUBTREE [closed]

Is anybody aware of the difference between these two FileVisitResult? Directly from this oracle tutorial: SKIP_SUBTREE – When preVisitDirectory returns this value, the specified directory and ...
1
vote
0answers
31 views

About resolve method of the java.nio.Path

I thoroughly understand the use of resolve(path) and relativize(path). In the following snippet though there is something which is not very clear to me: public FileVisitResult preVisitDirectory(Path ...
0
votes
1answer
12 views

Is FileVisitOption.FOLLOW_LINKS the only FileVisitOption available?

I see that the only constant available is FOLLOW_LINKS. On the other hand there is the method FileVisitOption.values() which returns an array of FileVisitOption values. I wonder, if it only has ...
1
vote
1answer
47 views

Can I have a more example of FileAttribute?

Basically in the Files.createFile(Path fileName, FileAttribute<?>... attrs ); there is the possibility to insert a series of attributes. I am aware of the following possibility: Path path = ...
0
votes
1answer
22 views

StandardOpenOption for directories and files. Files.create..()

Why the StandardOpenOption parameter is not present at all in the parameter list of this method: Files.createDirectory(path, FileAttribute<?>)? I am talking about the same StandardOpenOption ...
0
votes
1answer
27 views

FileChannel vs RandomAccessFile [closed]

Considering that FileChannel in Java 7 implements the interface SeekableByteChannel. Is there any use in using RandomAccessFile rather than FileChannel? Thanks in advance.
0
votes
1answer
28 views

Casting a SeekableByteChannel to a FileChannel

Directly from this oracle java tutorial: The following code snippet opens a file for both reading and writing by using one of the newByteChannel methods. The SeekableByteChannel that is ...
1
vote
1answer
43 views

What does “copy ByteBuffer” stand for in the following snippet?

Directly from this oracle tutorial, it's a bit explaining how to use the random access capabilities in java. The snippet is the following: String s = "I was here!\n"; byte data[] = s.getBytes(); ...
1
vote
1answer
24 views

FileChannel.open() vs RandomAccessFile in Jdk 7

I would like to know the difference between the following: FileChannel fc = FileChannel.open(); RandomAccessFile ra = new RandomAccessFile("RandomFile","rw); Since Java 7 the class FileChannel ...
2
votes
1answer
18 views

Nio bytebuffers (by channel) against IO BufferInputStream

Which of the two would be the best choice and in which circumstance? Clearly there is no sense in using a file channel for a very small file. Besides that, what are the pro and cons of the two ...
0
votes
2answers
21 views

Byte [] used as a BufferInputStream ok but

Ok I know a buffer is actually an array of byte, however I have never seen the following declaration (taken from here) URLConnection con = new URL("http://maps...").openConnection(); InputStream is = ...
0
votes
1answer
16 views

Oracle snippet does not give back results

Here I have the following bit of code taken from this oracle java tutorial: // Defaults to READ try (SeekableByteChannel sbc = Files.newByteChannel(file)) { ByteBuffer buf = ...
0
votes
1answer
29 views

RandomAccessFile vs FileChannel.open(path);

What kind of FileChannel object does the FileChannel.open(path) method return? Is it still random access allowed as if it was as following? RandomAccessFile ra = new ...
0
votes
1answer
34 views

difference between bytebuffer.flip() and bytebuffer.rewind()

I am aware that flip() set the current buffer position to 0 and set the limit to the previous buffer position whereas rewind() just set the current buffer position to 0. In the following code, either ...
0
votes
1answer
62 views

IO and NIO performance difference and example

I am very new to Java NIO and not have hands on it. Regarding Java NIO what I know is it is fast then java.IO. So, just to give a try I thought of writing simple programs for "copying contents of ...
0
votes
1answer
108 views

Java async socket IO

I've looked all over but I could not find a good example explaining NIO2 or how to do asynchronous IO with Java sockets. For example, if I want to speed up a web crawler by allowing threads to use ...
1
vote
2answers
126 views

Fastest way to read huge number of int from binary file

I use Java 1.5 on an embedded Linux device and want to read a binary file with 2MB of int values. (now 4bytes Big Endian, but I can decide, the format) Using DataInputStream via BufferedInputStream ...
0
votes
2answers
99 views

What are the benefits of java.nio for a web server?

I know it is a recurrent question and I have read articles like the following one http://www.mailinator.com/tymaPaulMultithreaded.pdf saying that is not necessarily true that nio scales better than ...
1
vote
2answers
92 views

writing to a file using java.nio

I have to use java.nio to create a file of any desired size by populating it with data. I am reading through a document, but am confused about when I need to flip, put, or write and am getting errors. ...
0
votes
1answer
40 views

What exactly is a Link(Symbolic or otherwise)

I was working on a java project with NIO.2 and I encountered the Files.createLink method. Upon doing some research on The Java Tutorials I found that these seem similar to windows shortcuts, but I'm ...
0
votes
3answers
193 views

Java Reading from a File using FileChannel

I've been getting some strange outputs from this code upon reading from a large file, the file was printed using a while loop to 99,999 digits however, upon reading the file and printing the contents ...
1
vote
2answers
165 views

How does one implement a timeout in blocking mode NIO?

I'm not using any selectors or anything like that. I just have a simple ServerSocketChannel listening and a SocketChannel connecting to it in blocking mode. I want to impose a timeout on the ...
0
votes
2answers
169 views

Sending strings via java.nio channels not working correctly

This is what I've tried: Server: import java.net.InetSocketAddress; import java.nio.*; import java.nio.channels.*; import java.nio.charset.*; public class JavaApplication12 { public static void ...
0
votes
0answers
106 views

FileChannel Map Failed

I'm practicing on Java nio and I created a program to find prime numbers. On running the program, It finds N new prime numbers starting from the last prime stored in a file and it appends the new ...
1
vote
1answer
73 views

What are things to think about when making a server-client application protocol? [closed]

One issue I can't wrap my head around is an efficient way to actually communicate between the server and the client(s). Every network enabled application I've made so far has used ObjectInputStream ...
1
vote
2answers
94 views

Java nio - cannot delete directory which was emptied

I am trying to walk the file tree and delet all files/directories. The code is below: Files.walkFileTree(metricPath, new SimpleFileVisitor<Path>() { @Override ...
2
votes
3answers
199 views

difference between read(ByteBuffer) and read(byte[]) in FileChannel and FileInputStream

I am newly to NIO and I find an article saying 'the block-based transmission is commonly more effective than stream-based transmission'. It means read(ByteBuffer) is block-based transmission and ...
-1
votes
1answer
106 views

Is there any lightweight framework for java IO/NIO client other than Netty or Apachae MINA [closed]

I wish to create a client on java NIO/ IO.Is there any lightweight framework especially for client application. I created a server using Netty framework but its too heavy for client.so am looking for ...
2
votes
0answers
77 views

Determining type of deleted file from WatchEvent

I have a WatchService that watches a directory tree for ENTRY_CREATE, ENTRY_DELETE AND ENTRY-MODIFY events. The problem is that the context of a WatchEvent<?> gives only a Path object. On delete ...
1
vote
3answers
48 views

Input Output using java [closed]

If we open a file with my java application and open the same file with another application and made some changes. The java application I made, should know it immedeately that this file is changed by ...
0
votes
0answers
46 views

Which exceptions may be passed to CompletionHandler?

After I invoke AsynchronousSocketChannel.read or AsynchronousSocketChannel.write, CompletionHandler.failed may be triggered. Where can I find a complete list of exceptions which will be passed to ...
3
votes
1answer
345 views

Fast writing: Memory-Mapped file versus BufferedWriter

Has anyone benchmarked this? I want to write as fast as possible to disk, minimizing the latency of my write calls. I wonder if writing to a memory mapped buffer (through buffer.put()) is faster than ...
-1
votes
1answer
286 views

Java NIO or Java IO for high performance server [closed]

I have been struggling for a while choosing between java NIO, or the old java i/o blocking sockets, for a server i am developing. I was thinking that java NIO would be better, because it will have a ...
0
votes
3answers
161 views

How to implement a buffered / batched FileChannel in Java?

This does not look trivial, specially for a read/write buffered FileChannel. Is there anything opensource implemented somewhere that I can base my implementation on? To be clear for those who did ...
-1
votes
1answer
1k views

Reading a file through java NIO [duplicate]

Possible Duplicate: Any way to improve the performance for reading a file ,better than buffered reader I was reading a file named ty.log which is of 20 mb through buffered reader please ...
0
votes
1answer
90 views

Can I seek to a position inside a Memory-mapped file?

I would live to have a memory-mapped file in Java NIO so that I can randomly move anywhere in the file to read any portion of it, pretty much like a seek method. Is that possible to do with a ...
4
votes
1answer
398 views

Write an integer in little endian

i have to write in a file 4bytes representing an integer in little endian (java use big endian) because an external c++ application have to read this file. My code don't write anything in te file but ...
0
votes
1answer
292 views

Java NIO File Channel writing to file

I am sending file over internet and the receiver receives the position of the file it was sent from and of course the data, I am supposed to write the data received on the file starting from the ...
2
votes
2answers
347 views

nio or io for server handling 1000 concurrent file uploads/downloads?

So people are telling NIO is faster and scales better than IO.Will it be the same for a server handling 1000 concurrent GET/PUTs ? Simple thread per model utilises multiples core to the max.Where ...
0
votes
1answer
79 views

what if we exceed the capacity of allocating buffer in ByteBuffer.allocate(48) NIO package class in java

file = new RandomAccessFile("xanadu.txt", "rw"); FileChannel channel = file.getChannel(); ByteBuffer buffer = ByteBuffer.allocate(48); int byteReads = channel.read(buffer); ...
0
votes
1answer
152 views

PushbackReader Equivalents

A somewhat vague question, I apologize in advance. I'm building the tokenizing portion of a small parser with help of the book Building Parsers with Java. It uses PushbackReader and the String ...
1
vote
0answers
618 views

Forking a process in Java redirecting input/output/error stream efficiently

in a bash script, if I execute an external program (i.e. 'bash') that is executed "inline". I mean that the process is not spanned in background and the stdin/stdout/stderr of the child process ...
4
votes
3answers
552 views

Java.io : Performance Tuning

I am having a file of around 4MB, the file is an ascii file containing normal keyboard characters only. I tried many classes in java.io package to read the file contents as string. Reading them ...
2
votes
1answer
190 views

What are the legitimate reasons to call MappedByteBuffer.force()?

I imagine two, but I would like to confirm if I am making sense here: 1) JVM exiting on an uncaught exception => probably wrong here since somehow the exiting JVM will do that for me, but it would ...
1
vote
2answers
147 views

Why would someone use a Memory Mapped File in PRIVATE mode?

The documentation does not say much besides: Private: Changes made to the resulting buffer will not be propagated to the file and will not be visible to other programs that have mapped the ...
5
votes
1answer
536 views

Java Reactor Pattern with java.io Package

I see in several application source like Minecraft and JIrcs they both use java.io to implement Reactor Plugin (if I'm not wrong) and also in this article. So, what is the difference between java.io ...
1
vote
2answers
231 views

How to tail a file using a NIO selector, in other words, as lines are added to the file a channel is selected so you can read the lines?

Because you cannot redirect GC logs I am left with the option to redirect it to a file with -Xloggc and then get the contents of this file inside my selector through a file channel of some kind. ...
0
votes
0answers
151 views

what are the features added in java NIO and subsequently NIO2 ? [closed]

what are the features, functionalities that were added in java NIO and subsequently NIO2 ? Also some performance characteristics. Would also like some comparison with the current versions of Netty.
0
votes
1answer
127 views

Optimisation of frequent flush()

I want to constantly write data to disc. And I want to flush data to disc frequently (for example every chunk of 64MB). What solution can you propose? I think standard OutputStream might be a better ...

1 2