需求:
目前:
完成配置文件读取;完成简单比对;
无法匹配所有比对文件;无法分开展示比对结果;无法使用命令行
代码:
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.table.DefaultTableModel;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import com.highgo.Test.XMLDemo1;
import java.io.InputStream;
import java.util.Iterator;
import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Highgo
*/
public class CheckboxSwing extends javax.swing.JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Creates new form CheckboxSwing
*
* @throws IOException
*/
public CheckboxSwing() throws IOException {
this.setTitle("CheckboxSwing");
initComponents();
inittable();
this.setLocationRelativeTo(null);
}
private CheckboxSwing getThis() {
return this;
}
private void getXml() {
SAXReader reader = new SAXReader();
InputStream is =
XMLDemo1.class.getClassLoader().getResourceAsStream("filedath.xml");
Document doc;
try {
doc = reader.read(is);
Element root = doc.getRootElement();
Iterator<Element> it = root.elementIterator();
while(it.hasNext()){
Element e = it.next();//获取子元素
Attribute idAttr = e.attribute("id");
String id = idAttr.getValue();
System.out.println(id);
//通过元素对象获取子元素对象
Element nameElement = e.element("name");
//获取元素中的文本内容
filedath = nameElement.getText();
System.out.println(filedath);
}
} catch (DocumentException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
private String filedath = null;
private void dathinit() {
jTabcheckbox.getModel();
// String filedath = null;
// String dath = "./config/Checkbox.config";
// FileReader fr = new FileReader(dath);
// BufferedReader br = new BufferedReader(fr);
//
// String lineText = null;
// while ((lineText = br.readLine()) != null) {
// System.out.println(lineText);
// filedath = lineText;
// }
//
// System.out.println(filedath);
// br.close();
// filedath = "D://CPUZ";
//String filedath = null;
//filedath = jTextArea1.getText();
getXml();
//filedath = "D:\\测试目录";
jTextArea1.append(filedath);
// if (filedath.equals("") == true) {
//
// }
if (filedath == null || filedath.trim().equals("")) {
}
else {
traverseFolder(filedath,0);
}
}
private DefaultMutableTreeNode traverseFolder(String path,int n) {
DefaultMutableTreeNode temp;
// ArrayList<String> alist= new ArrayList<String>(/*capacity*/);
DefaultTableModel model = (DefaultTableModel) jTabcheckbox.getModel();
DefaultMutableTreeNode fujiedian = new DefaultMutableTreeNode(new File(path).getName());
File file = new File(path);
if (file.exists()) {
if(file.isDirectory()) {
File[] files = file.listFiles();
if (files.length == 0) {
if(file.isDirectory()) {//如果是空文件夹
DefaultMutableTreeNode dn = new DefaultMutableTreeNode(file.getName(), false);
return dn;
}
}else{
for (File file2 : files) {
if (file2.isDirectory()) {
//是目录的话,生成节点,并添加里面的节点
if( n < 5) {
n++;
fujiedian.add(traverseFolder(file2.getAbsolutePath(),n));
}
}else{
//是文件的话直接生成节点,并把该节点加到对应父节点上
try {
String fileName = file2.getName();
String fapat = file2.getCanonicalPath();
model.addRow(new Object[] { true, model.getRowCount() + 1 ,fileName,fapat});
temp=new DefaultMutableTreeNode(file2.getName());
fujiedian.add(temp);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
javax.swing.tree.DefaultTreeModel dm = new DefaultTreeModel(fujiedian);
// 将模型设给树,树上显示的将上前面所加载的节点
jTree.setModel(dm);
}
}
} else {
model.addRow(new Object[] { true, model.getRowCount() + 1 ,file.getName()});
}
} else {//文件不存在
return null;
}
return fujiedian;
}
private void inittable() {
DefaultTableModel model = (DefaultTableModel) jTabcheckbox.getModel();
//dathinit();
//jTree();
jTree.setModel(null);
jBAll.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
for (int i = 0; i < model.getRowCount(); i++) {
model.setValueAt(Boolean.valueOf(true), i, 0);
}
}
});
jBAllNot.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
for (int i = 0; i < model.getRowCount(); i++) {
model.setValueAt(Boolean.valueOf(false), i, 0);
}
}
});
jBClear.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// while(model.getRowCount()>0){
// model.removeRow(model.getRowCount()-1);
// }
model.setRowCount(0);
}
});
jBDelete.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// int i = 0;
int sum = model.getRowCount();
// while(i < sum)
// {
// if ( (boolean) model.getValueAt(i, 0) == true)
// {
// model.removeRow(i);
// } else {
// i++;
// }
// sum = model.getRowCount();
// }
// while(sum > 0) {
// if((boolean) model.getValueAt(sum - 1, 0) == true) {
// model.removeRow(sum - 1);
// }
// sum--;
// }
for(int i = sum - 1; i >=0; i--) {
if((boolean) model.getValueAt(i, 0) == true) {
model.removeRow(i);
}
}
}
});
getRootPane().setDefaultButton(jBOK);
jBOK.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Object str = null;
Object[] mojdlogName = new Object[model.getRowCount()];
Object[] mojdlogPath = new Object[model.getRowCount()];
int mi = 0;
for (int i = 0; i < model.getRowCount(); i++) {
str = model.getValueAt(i, 0);
// System.out.println(str);
if (str.equals(true)) {
mojdlogName[mi] = model.getValueAt(i, 2);
mojdlogPath[mi] = model.getValueAt(i, 3);
System.out.println(mojdlogName[mi]);
System.out.println(mojdlogPath[mi]);
mi++;
System.out.println("true" + (i + 1));
} else {
System.out.println("false" + (i + 1));
}
}
System.out.println(mojdlogName);
new NewJDialog(getThis(), true, mojdlogName,mojdlogPath);
}
});
jBDath.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
dathinit();
}
});
// jTree.set
//String top = ("CCCCCCCCCC");
//top.add(new DefaultMutableTreeNode(("C1")));
//jTree.add(comp);
//jTree.addSelectionRow(2);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jBAllNot = new javax.swing.JButton();
jBAll = new javax.swing.JButton();
jSPTabel = new javax.swing.JScrollPane();
jTabcheckbox = new javax.swing.JTable();
jBOK = new javax.swing.JButton();
jSPArea = new javax.swing.JScrollPane();
jTextArea1 = new javax.swing.JTextArea();
jBDath = new javax.swing.JButton();
jBClear = new javax.swing.JButton();
jBDelete = new javax.swing.JButton();
jSPTree = new javax.swing.JScrollPane();
jTree = new javax.swing.JTree();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jBAllNot.setText("ANOT");
jBAll.setText("ALL");
jTabcheckbox.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"Choose", "line", "Name", "path"
}
) {
Class[] types = new Class [] {
java.lang.Boolean.class, java.lang.Integer.class, java.lang.Object.class, java.lang.Object.class
};
public Class getColumnClass(int columnIndex) {
return types [columnIndex];
}
});
jSPTabel.setViewportView(jTabcheckbox);
if (jTabcheckbox.getColumnModel().getColumnCount() > 0) {
jTabcheckbox.getColumnModel().getColumn(0).setMinWidth(30);
jTabcheckbox.getColumnModel().getColumn(0).setPreferredWidth(60);
jTabcheckbox.getColumnModel().getColumn(0).setMaxWidth(200);
jTabcheckbox.getColumnModel().getColumn(1).setMinWidth(30);
jTabcheckbox.getColumnModel().getColumn(1).setPreferredWidth(50);
jTabcheckbox.getColumnModel().getColumn(1).setMaxWidth(200);
jTabcheckbox.getColumnModel().getColumn(3).setMinWidth(30);
jTabcheckbox.getColumnModel().getColumn(3).setPreferredWidth(30);
}
jBOK.setText("OK");
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
jSPArea.setViewportView(jTextArea1);
jBDath.setText("Dath");
jBClear.setText("Clear");
jBDelete.setText("Delete");
jSPTree.setViewportView(jTree);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(39, 39, 39)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jBAllNot, javax.swing.GroupLayout.PREFERRED_SIZE, 68, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jBAll, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jBDelete, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jBClear, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 66, Short.MAX_VALUE)
.addComponent(jSPArea, javax.swing.GroupLayout.PREFERRED_SIZE, 428, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jBDath, javax.swing.GroupLayout.PREFERRED_SIZE, 69, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(26, 26, 26))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(162, 162, 162)
.addComponent(jBOK, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGap(169, 169, 169))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jSPTabel, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jSPTree)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jSPArea, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jBAll)
.addComponent(jBClear))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jBAllNot)
.addComponent(jBDelete)))
.addComponent(jBDath))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jSPTabel, javax.swing.GroupLayout.DEFAULT_SIZE, 437, Short.MAX_VALUE)
.addGap(3, 3, 3))
.addGroup(layout.createSequentialGroup()
.addGap(6, 6, 6)
.addComponent(jSPTree)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)))
.addComponent(jBOK)
.addGap(6, 6, 6))
);
pack();
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
// <editor-fold defaultstate="collapsed" desc=" Look and feel setting code
// (optional) ">
/*
* If Nimbus (introduced in Java SE 6) is not available, stay with the default
* look and feel. For details see
* http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(CheckboxSwing.class.getName()).log(java.util.logging.Level.SEVERE, null,
ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(CheckboxSwing.class.getName()).log(java.util.logging.Level.SEVERE, null,
ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(CheckboxSwing.class.getName()).log(java.util.logging.Level.SEVERE, null,
ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(CheckboxSwing.class.getName()).log(java.util.logging.Level.SEVERE, null,
ex);
}
// </editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
try {
new CheckboxSwing().setVisible(true);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jBAll;
private javax.swing.JButton jBAllNot;
private javax.swing.JButton jBClear;
private javax.swing.JButton jBDath;
private javax.swing.JButton jBDelete;
private javax.swing.JButton jBOK;
private javax.swing.JScrollPane jSPArea;
private javax.swing.JScrollPane jSPTabel;
private javax.swing.JScrollPane jSPTree;
private javax.swing.JTable jTabcheckbox;
private javax.swing.JTextArea jTextArea1;
private javax.swing.JTree jTree;
// End of variables declaration//GEN-END:variables
}
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Stream;
import javax.swing.table.DefaultTableModel;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Highgo
*/
public class NewJDialog extends javax.swing.JDialog {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Creates new form NewJDialog
*/
private NewJDialog getThis() {
return this;
}
private boolean comp;
private String FILE_PATH ;
private String COMPARED_FILE_PATH = "src/File101.txt";
// private String RESULT_FILE_PATH = "src/result.txt";
//private List<String> alist = new ArrayList<String>(/*capacity*/);
//private List<String> blist = new ArrayList<String>(/*capacity*/);
private List<List<String>> alist = new ArrayList<List<String>>(/*capacity*/);
private List<List<String>> blist = new ArrayList<List<String>>(/*capacity*/);
private List<String> aalist = new ArrayList<String>();
private List<String> bblist = new ArrayList<String>();
private String[] astr;
int num = 0;
public NewJDialog(java.awt.Frame parent, boolean modal,Object[] mojdlogName,Object[] mojdlogPath) {
super(parent, modal);
initComponents();
DefaultTableModel model = (DefaultTableModel) jTable1.getModel();
for(int i = 0 ; i < mojdlogName.length; i++) {
if(mojdlogName[i] != null) {
FILE_PATH = (String) mojdlogPath[i];
compare(FILE_PATH,COMPARED_FILE_PATH);
System.out.println(num);
alist.add(aalist);
blist.add(bblist);
//System.out.println(alist);
model.addRow(new Object[] { model.getRowCount() + 1 ,mojdlogName[i], comp});
}
}
initAction();
this.setTitle("NewjDialog");
this.setLocationRelativeTo(null);
this.setVisible(true);
}
private void compare(String FILE_PATH,String COMPARED_FILE_PATH) {
try {
BufferedReader br = new BufferedReader(new FileReader(FILE_PATH));
BufferedReader cbr = new BufferedReader(new FileReader(COMPARED_FILE_PATH));
//BufferedWriter rbw = new BufferedWriter(new FileWriter(RESULT_FILE_PATH));
try {
int lineNum = 1;
String lineStr = null;
String TlineStr = null;
String brStr = null;
String cbrStr = null;
comp = true;
while((brStr = br.readLine()) != null &&(cbrStr = cbr.readLine()) != null)
{
if (brStr.equals(cbrStr)) {
lineStr = "<<<Equal: " + "\n";
} else
{
lineStr = brStr + "\n";
comp = false;
}
TlineStr = cbrStr + "\n";
lineNum++;
// System.out.println(lineStr);
// alist.add(lineStr);
aalist.add(num, lineStr);
bblist.add(num, TlineStr);
// System.out.println(bblist);
//blist.add(TlineStr);
//astr[lineNum] = lineStr;
// rbw.write(lineStr);
}
while ((cbrStr = cbr.readLine()) != null)
{
lineStr = cbrStr + "\n";
lineNum++;
// System.out.println(lineStr);
comp = false;
bblist.add(num, lineStr);
//alist.add(lineStr);
//blist.add(lineStr);
//astr[lineNum] = lineStr;
// rbw.write(lineStr);
}
while((brStr = br.readLine()) != null )
{
lineStr = brStr + "\n";
lineNum++;
// System.out.println(lineStr);
comp = false;
// alist.add(lineStr);
aalist.add(num, lineStr);
// blist.add(lineStr);
//astr[lineNum] = lineStr;
// rbw.write(lineStr);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
br.close();
cbr.close();
num++;
// rbw.close();
}
} catch (IOException e) {
e.printStackTrace();
}
//comp = false;
}
private void initAction() {
DefaultTableModel model = (DefaultTableModel) jTable1.getModel();
jTable1.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
int clickCount = e.getClickCount();
if (clickCount == 2) {
int numac = model.getRowCount();
System.out.println(numac);
new JDiaComp(null, true,alist,blist,numac-1);
}
}
});
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
jTable1 = new javax.swing.JTable();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
jTable1.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"Line", "Name", "Boolean"
}
) {
boolean[] canEdit = new boolean [] {
false, false, false
};
public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
});
jScrollPane1.setViewportView(jTable1);
if (jTable1.getColumnModel().getColumnCount() > 0) {
jTable1.getColumnModel().getColumn(0).setMinWidth(30);
jTable1.getColumnModel().getColumn(0).setPreferredWidth(60);
jTable1.getColumnModel().getColumn(0).setMaxWidth(150);
}
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane1)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane1)
.addContainerGap())
);
pack();
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(NewJDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(NewJDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(NewJDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(NewJDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the dialog */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
NewJDialog dialog = new NewJDialog(new javax.swing.JFrame(), true, null,null);
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTable jTable1;
// End of variables declaration//GEN-END:variables
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import java.awt.Component;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author Highgo
*/
public class JDiaComp extends javax.swing.JDialog {
/**
* Creates new form JDiaComp
*/
public JDiaComp(java.awt.Frame parent, boolean modal,List<List<String>> alist,List<List<String>> blist,int num) {
super(parent, modal);
initComponents();
//alist.get(0);
// System.out.println(alist.get(0));
// System.out.println("-------------------------------------------------");
// System.out.println(alist.get(1));
// String[] toa = alist.get(num).toArray(new String[alist.size()]);
// for(String s1 : toa) {
// //System.out.println(s);
// jTextPane1.setText(jTextPane1.getText() + s1);
// }
//
for(int i = 0; i < alist.size(); i++ ) {
String[] toa = alist.get(0).toArray(new String[alist.size()]);
String s3 = null;
for(int i2 = toa.length; i2 > 0 ; i2--) {
//System.out.println(s);
s3 = toa[i2-1];
jTextPane1.setText(jTextPane1.getText() + s3);
}
}
for(int i = 0; i < blist.size(); i++ ) {
String[] tob = blist.get(0).toArray(new String[blist.size()]);
String s3 = null;
for(int i2 = tob.length; i2 > 0 ; i2--) {
//System.out.println(s);
s3 = tob[i2-1];
jTextPane2.setText(jTextPane2.getText() + s3);
}
}
// String[] toa = alist.toArray(new String[alist.size()]);
// for(String s : toa) {
// //System.out.println(s);
// jTextPane1.setText(jTextPane1.getText() + s);
// }
// String[] tob = blist.get(num).toArray(new String[blist.size()]);
// for(String s2 : tob) {
// //System.out.println(s);
// jTextPane2.setText(jTextPane2.getText() + s2);
// }
//jTextPane1.setText("ssss");
this.setTitle("JDiaComp");
this.setLocationRelativeTo(null);
this.setVisible(true);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new javax.swing.JScrollPane();
jTextPane1 = new javax.swing.JTextPane();
jScrollPane3 = new javax.swing.JScrollPane();
jTextPane2 = new javax.swing.JTextPane();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
jScrollPane1.setViewportView(jTextPane1);
jScrollPane3.setViewportView(jTextPane2);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 249, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jScrollPane3, javax.swing.GroupLayout.DEFAULT_SIZE, 245, Short.MAX_VALUE)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jScrollPane3)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 376, Short.MAX_VALUE))
.addContainerGap())
);
pack();
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(JDiaComp.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(JDiaComp.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(JDiaComp.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(JDiaComp.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the dialog */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
JDiaComp dialog = new JDiaComp(new javax.swing.JFrame(), true,null,null,0);
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane3;
private javax.swing.JTextPane jTextPane1;
private javax.swing.JTextPane jTextPane2;
// End of variables declaration//GEN-END:variables
}
<?xml version="1.0" encoding="UTF-8"?>
<companys>
<company id="1001">
<name>D:\\测试目录</name>
</company>
</companys>