资源简介
图像隐写F5 JAVA源代码 窗口界面程序 steganography
代码片段和文件信息
//Titel:Ihr Produktname
//Version:
//Copyright:Copyright (c) 1998
//Autor:Wohne
//Organisation:customSoft
//Beschreibung:Ihre Beschreibung
package CipherAWT;
import java.awt.*;
import java.awt.event.*;
public class AboutDialog extends Dialog {
Panel panel1 = new Panel();
BorderLayout borderLayout1 = new BorderLayout();
Panel Panel1 = new Panel();
GridLayout gridLayout1 = new GridLayout();
Label Label1 = new Label();
Label Label2 = new Label();
Panel Panel2 = new Panel();
BorderLayout borderLayout2 = new BorderLayout();
Label Label3 = new Label();
TextArea TextArea1 = new TextArea();
public AboutDialog(frame frame) {
super(frame “About“ true);
try {
jbInit();
}
catch (Exception ex) {
ex.printStackTrace();
}
String s1 = “This software is based in part on the work of\n“;
s1 = s1 + “James R. Weeks/BioElectroMech james@obrador.com and the Independent\n“;
s1 = s1 + “JPEG Group (package james)\n“;
s1 = s1 + “Sean Breslin/Dr. Ortega (package ortega)\n“;
s1 = s1 + “John Walker kelvin@fourmilab.ch (package randomX)\n“;
s1 = s1 + “The rest of this software is released under the GPL. See gpl.txt for details.\n“;
TextArea1.setText(s1);
pack();
}
void jbInit() throws Exception {
panel1.setLayout(borderLayout1);
Panel1.setLayout(gridLayout1);
this.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(WindowEvent e) {
this_windowClosing(e);
}
});
borderLayout1.setVgap(10);
gridLayout1.setRows(2);
gridLayout1.setColumns(1);
gridLayout1.setVgap(10);
Label1.setText(“Steganography Software F5 by Andreas Westfeld (westfeld@inf.tu-dresden.de)“);
Label2.setText(“Frontend by Christian Wohne (christian@wohne.de)“);
Label3.setText(“License:“);
TextArea1.setEditable(false);
TextArea1.setColumns(70);
TextArea1.setRows(10);
Panel2.setLayout(borderLayout2);
add(panel1);
panel1.add(Panel1 BorderLayout.NORTH);
Panel1.add(Label1 null);
Panel1.add(Label2 null);
panel1.add(Panel2 BorderLayout.CENTER);
Panel2.add(Label3 BorderLayout.NORTH);
Panel2.add(TextArea1 BorderLayout.CENTER);
}
void this_windowClosing(WindowEvent e) {
setVisible(false);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2395 2001-04-29 19:10 F5AWT\AboutDialog.java
文件 674 2001-04-29 19:10 F5AWT\CipherAWT\AboutDialog$1.class
文件 3295 2001-04-29 19:10 F5AWT\CipherAWT\AboutDialog.class
文件 5093 2001-04-29 18:50 F5AWT\CipherAWT\em
文件 4994 2001-04-29 18:50 F5AWT\CipherAWT\Extract.class
文件 667 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 703 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 703 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 698 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 702 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 702 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 701 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 701 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 701 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 702 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 702 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 11169 2011-11-04 10:49 F5AWT\CipherAWT\Mainfr
文件 669 2000-06-13 15:34 F5AWT\crypt\F5Random.class
文件 516 2000-06-13 15:34 F5AWT\crypt\Permutation.class
文件 5257 2001-04-29 18:47 F5AWT\em
文件 5996 2001-04-29 18:47 F5AWT\Extract.java
文件 2609 2000-06-13 15:34 F5AWT\image\Bmp.class
文件 4961 2000-06-13 15:34 F5AWT\james\DCT.class
文件 7382 2000-06-13 15:34 F5AWT\james\Huffman.class
文件 10476 2000-06-13 15:34 F5AWT\james\JpegEncoder.class
文件 3728 2000-06-13 15:34 F5AWT\james\JpegInfo.class
文件 13079 2001-04-29 19:10 F5AWT\Mainfr
文件 96 2001-04-29 19:12 F5AWT\me
文件 11711 2000-06-13 15:34 F5AWT\ortega\HuffmanDecode.class
文件 2353 2000-06-13 15:34 F5AWT\ortega\HuffTable.class
............此处省略13个文件信息
- 上一篇:Java进阶教程-动力节点.txt
- 下一篇:128位AES加密算法C语言实现
评论
共有 条评论