上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 106 下一页
摘要: Advertisement.java public interface Advertisement { //接口 public void showAdvertisement(); public String getCorpName(); } AdvertisementBoard.java publi 阅读全文
posted @ 2023-02-23 14:03 阿风小子 阅读(81) 评论(0) 推荐(0)
摘要: Example10_1.java import java.io.*; public class Example10_1 { public static void main(String args[]) { File f = new File("C:\\ch10","Example10_1.java" 阅读全文
posted @ 2023-02-23 14:01 阿风小子 阅读(94) 评论(0) 推荐(0)
摘要: Example10_4.java import java.io.*; public class Example10_4 { public static void main(String args[]) { int n=-1; byte [] a=new byte[100]; try{ File f= 阅读全文
posted @ 2023-02-23 14:00 阿风小子 阅读(18) 评论(0) 推荐(0)
摘要: Example10_5.java import java.io.*; public class Example10_5 { public static void main(String args[]) { byte [] a = "新年快乐".getBytes(); byte [] b = "Hap 阅读全文
posted @ 2023-02-23 13:59 阿风小子 阅读(37) 评论(0) 推荐(0)
摘要: english.txt The arrow missed the target. They rejected the union demand. Where does this road go to? Where does this road go to? Example10_7.java impo 阅读全文
posted @ 2023-02-23 13:58 阿风小子 阅读(18) 评论(0) 推荐(0)
摘要: Example10_8.java import java.io.*; public class Example10_8 { public static void main(String args[]) { RandomAccessFile inAndOut=null; int data[]={1,2 阅读全文
posted @ 2023-02-23 13:57 阿风小子 阅读(29) 评论(0) 推荐(0)
摘要: Example10_10.java import java.io.*; public class Example10_10 { public static void main(String args[]) { try { ByteArrayOutputStream outByte=new ByteA 阅读全文
posted @ 2023-02-23 13:54 阿风小子 阅读(18) 评论(0) 推荐(0)
摘要: Example10_11.java import java.io.*; public class Example10_11 { public static void main(String args[]) { File file=new File("apple.txt"); try{ FileOut 阅读全文
posted @ 2023-02-23 13:50 阿风小子 阅读(17) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/yihujiu Example12_7.java public class Example12_7 { public static void main(String args[]) { Bank bank = new Bank(); bank.setM 阅读全文
posted @ 2023-02-23 13:41 阿风小子 阅读(16) 评论(0) 推荐(0)
摘要: Example12_8.java public class Example12_8 { public static void main(String args[ ]) { TicketHouse officer = new TicketHouse(); Thread zhangfei,likui; 阅读全文
posted @ 2023-02-23 13:38 阿风小子 阅读(17) 评论(0) 推荐(0)
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 106 下一页