java编程代码中英对照 java中文代码( 二 )


}
public void actionPerformed(ActionEvent e)//作为ActionListener类的构造函数 , 如果你的class implements ActionListenser,那就必须得有这个,也可以单独写一个class , 不过有点麻烦
{
if(e.getSource()==btn1)//当按钮被点击的时候
{
String str="";//建一个字符串
String tmp=this.txf.getText();//同上,这个字符串的值是当前对象(窗口)中,文本框输入的值
for(int k=0;ktmp.length();k++)//建一个 永久循环
str+=tmp.charAt(k)+"%";//把 % 插入每一个字符后面,作用后面说
String sql=null;//同上
Statement stmt=null;//定义一个stmt,用来建数据库连接的
sql="select * from chinese where charsound like'"+str+"'";//创建一个sql数据库语句,但它本身还是一个字符串
System.out.println(sql);//系统显示创建的语句,通常找错时候用的
try{//try 和 catch 的作用一句两句说不清楚 不知道你就自己查查
Class.forName("com.mysql.jdbc.Driver");//或者:Class.forName("org.gjt.mm.mysql.Driver");关联mysql数据库驱动
Connection conn=DriverManager.getConnection("jdbc:mysql://localhost/japan?user=rootpassword=sa");//建立连接,数据库名japan(为什么不是chinese?)用户名root密码sa
stmt=conn.createStatement();//建立statement对象 , 用来发送sql语句到数据库
ResultSet rs=stmt.executeQuery(sql);//运行语句并建立一个查询结果的集合
System.out.println("\n------------------------search :"+str+"-------------------------------");//同上
jt.setText("");//清空文本编辑区域
while(rs.next())//while循环,当还有结果的时候,把所有查询结果添加加到文本编辑区域中
{
jt.append(new String(rs.getString("charname").getBytes("iso-8859-1"),"gb2312")+"\t");
System.out.print(new String(rs.getString("charname").getBytes("iso-8859-1"),"gb2312")+"\t");
}
stmt.close();//关闭关连,很重要 。
}
catch(Exception eq){System.out.println("error");}
//--------------------------------------------------------------end btn1-------
}
}
public static void main(String args[])
{
Mywindow win=new Mywindow();//建立一个 mywindow 对象
win.pack();//将所有元素整合
win.show();
}
}
用java编写程序 1.建立一个文本文件,输入英语短文.编写一个程序,统计该文件中英文字母的个数,public class Read {
public static void main(String[] args) throws Exception {
long size = readFileByChars("D://test.txt");
write("D://test1.txt",size);
}
public static long readFileByChars(String fileName) {
File file = new File(fileName);
Reader reader = null;
int num =0;
try {
reader = new InputStreamReader(new FileInputStream(file));
int tempchar;
while ((tempchar = reader.read()) != -1) {
// 对于windows下 , rn这两个字符在一起时 , 表示一个换行 。
// 但如果这两个字符分开显示时,会换两次行 。
// 因此,屏蔽掉r , 或者屏蔽n 。否则 , 将会多出很多空行 。
if (((char) tempchar) != 'r') {
System.out.print((char) tempchar);
}
if (tempchar= 'A'tempchar= 'Z' ||tempchar= 'a'tempchar= 'z'){
num++;
}
}
reader.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
return num;
}
public static void write(String fileName,long size) throws IOException {
File file = new File(fileName);
Writer writer = null;
try {
writer =new FileWriter(new File(fileName));
writer.write("英文字母共有:"+size);

推荐阅读