자바 는 각각 바이트 흐름, 문자 흐름, 바 이 너 리 를 통 해 파일 을 읽 는 코드 입 니 다.
public class Start
{
public static void main(String args[]) throws Exception{
File sf = new File("H:/javapro/files/source.jpg");
File df = new File("H:/javapro/files/dest.jpg");
new ReadWriteGra(sf,df);
new UseGra(df);
}
}
class ReadWriteGra
{
FileInputStream in = null;
FileOutputStream out = null;
public ReadWriteGra(File sourceFile,File destFile) throws Exception{
byte[] buf = new byte[1024];
int len = 0;
in = new FileInputStream(sourceFile);
out = new FileOutputStream(destFile,true);
while( (len = in.read(buf)) != -1 ){
out.write(buf,0,len);
}
out.close();
}
}
class UseGra extends JFrame
{
public UseGra(File picFile) throws Exception{
this.setVisible(true);
this.setResizable(false);
this.setLayout(null);
this.setBounds(600, 200, 400, 370);
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
JPanel p1 = (JPanel)this.getContentPane();
p1.setOpaque(false);
p1.setLayout(null);
InputStream is = new FileInputStream(picFile);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
int b = 0;
while((b = is.read())!=-1){
baos.write(b);
}
ImageIcon image = new ImageIcon(baos.toByteArray());
JLabel background = new JLabel(image);
this.getLayeredPane().add(background, new Integer(Integer.MIN_VALUE));
background.setBounds(0, 0, image.getIconWidth(), image.getIconHeight());
JButton bt = new JButton("Test_Button");
p1.add(bt);
bt.setBounds(10,10,150,25);
validate();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java 의 조작 excel 클래스텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.