码迷,mamicode.com
首页 >  
搜索关键字:throws    ( 4120个结果
Java输入数据流
@Test public void test() throws Exception{ //创建输入数据流对象 InputStream In=new FileInputStream("HellWord.txt"); try { //System.out.print((ch...
分类:编程语言   时间:2014-06-18 21:39:04    阅读次数:226
java 输出流
//输出流 @Test public void testOutStream() throws Exception{ OutputStream out =new FileOutputStream("abc.txt"); String content="hello word/nwww.baidu.c.....
分类:编程语言   时间:2014-06-18 21:16:47    阅读次数:280
Java缓存流
//缓存数据流 @Test public void testBufferReaderAndWriter() throws IOException{ //创建文件字符输入流 Reader in=new FileReader("abc.txt"); BufferedReader br=new Bu...
分类:编程语言   时间:2014-06-18 19:22:40    阅读次数:300
反射获取类的几种方法
1 public class Demo { 2 3 /** 4 * 反射:加载类,获得类的字节码 5 * @param args 6 * @throws ClassNotFoundException 7 */ 8 public stati...
分类:其他好文   时间:2014-06-17 12:59:36    阅读次数:237
Java逐行读取文件有多少种方法?
Java I/O类数量非常之大,而且当需要使用哪个时很容易感到困惑,下面的两种方法用于逐行读取一个文件。 方法1: private static void readFile1(File fin) throws IOException { FileInputStream fis = new FileInputStream(fin); //Construct BufferedRea...
分类:编程语言   时间:2014-06-15 17:16:17    阅读次数:300
Java 线程第三版 第四章 Thread Notification 读书笔记
一、等待与通知 public final void wait() throws InterruptedException      等待条件的发生。 public final void wait(long timeout) throws InterruptedException      等待条件的发生。如果通知没有在timeout指定的时间内发生,它还是会返回。 public fi...
分类:编程语言   时间:2014-06-14 14:10:33    阅读次数:425
JAVA 监视Windows系统的进程代码
该代码列出 Windows 下当前运行的所有进程import java.io.*;public class ListProcess {public static void main(String[] args) throws IOException{Runtime runtime = Runtime...
分类:编程语言   时间:2014-06-13 19:25:03    阅读次数:300
看一下自定义的插件怎么样
public void setUp() throws Exception {protected final Log log = LogFactory.getLog(this.getClass()); public User currOperator;//绝大多数的时候都有登录人信息,特此创建 pub...
分类:其他好文   时间:2014-06-12 07:56:57    阅读次数:168
Jave代码中生成url http请求
public static String sendPost(String url, String param)throws Exception { PrintWriter out = null; BufferedReader in = null; Stri...
分类:其他好文   时间:2014-06-10 09:30:00    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!