< prev index next >

test/java/nio/channels/FileChannel/Transfer.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4434723 4482726 4559072 4638365 4795550 5081340 5103988 6253145
  26  *   6984545
  27  * @summary Test FileChannel.transferFrom and transferTo
  28  * @library ..

  29  */
  30 
  31 import java.io.*;
  32 import java.net.*;
  33 import java.nio.*;
  34 import java.nio.channels.*;
  35 import java.nio.channels.spi.SelectorProvider;
  36 import java.nio.file.StandardOpenOption;
  37 import java.nio.file.FileAlreadyExistsException;
  38 import java.util.Random;
  39 
  40 
  41 public class Transfer {
  42 
  43     private static Random generator = new Random();
  44 
  45     private static int[] testSizes = {
  46         0, 10, 1023, 1024, 1025, 2047, 2048, 2049 };
  47 
  48     public static void main(String[] args) throws Exception {




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4434723 4482726 4559072 4638365 4795550 5081340 5103988 6253145
  26  *   6984545
  27  * @summary Test FileChannel.transferFrom and transferTo
  28  * @library ..
  29  * @key randomness
  30  */
  31 
  32 import java.io.*;
  33 import java.net.*;
  34 import java.nio.*;
  35 import java.nio.channels.*;
  36 import java.nio.channels.spi.SelectorProvider;
  37 import java.nio.file.StandardOpenOption;
  38 import java.nio.file.FileAlreadyExistsException;
  39 import java.util.Random;
  40 
  41 
  42 public class Transfer {
  43 
  44     private static Random generator = new Random();
  45 
  46     private static int[] testSizes = {
  47         0, 10, 1023, 1024, 1025, 2047, 2048, 2049 };
  48 
  49     public static void main(String[] args) throws Exception {


< prev index next >