您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. package tjpStaticPart;
  2. import java.io.*;
  3. public class Test {
  4. public static void main(String[] args) throws Exception{
  5. try {
  6. FileInputStream in = new FileInputStream("file-does-not-exist");
  7. } catch (FileNotFoundException e) {
  8. }
  9. }
  10. }