Edit C:\Program Files\Java\jdk1.7.0_45\com\sun\imageio\plugins\common\InputStreamAdapter.java
/* * Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.imageio.plugins.common; import java.io.IOException; import java.io.InputStream; import javax.imageio.stream.ImageInputStream; public class InputStreamAdapter extends InputStream { ImageInputStream stream; public InputStreamAdapter(ImageInputStream stream) { super(); this.stream = stream; } public int read() throws IOException { return stream.read(); } public int read(byte b[], int off, int len) throws IOException { return stream.read(b, off, len); } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de