?? 六級.java
字號:
/* * 六級.java * * Created on 2004年9月20日, 下午8:39 *//** * * @author litertiger */import java.awt.*;import java.awt.event.*;import java.util.*;import java.io.*;public class 六級 { /** Initialization method that will be called after the applet is loaded * into the browser. */ String data; public void 六級() { try{ File txtfile=new File("E:\\cet\\cet46\\ck6-1.sdb"); FileInputStream filesstream=new FileInputStream("E:\\cet\\cet46\\ck6-1.sdb"); BufferedReader os=new BufferedReader(new InputStreamReader(filesstream)); for( ;;) { data=os.readLine(); if(data==null) break; StringTokenizer fenxi_1=new StringTokenizer(data," ,"); int n1=fenxi_1.countTokens(); while(fenxi_1.hasMoreTokens()) { String str=fenxi_1.nextToken(); System.out.println(str); } } } catch(IOException e) { } // TODO start asynchronous download of heavy resources } public static void main(String args[]) { 六級 c=new 六級(); } // TODO overwrite start(), stop() and destroy() methods}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -