上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 43 下一页
摘要: http://www.cnblogs.com/jqyp/archive/2010/08/20/1805041.html关于jdk和cglib具体实现需要研究下源码,内部的执行过程才能知晓 阅读全文
posted @ 2012-10-23 12:15 feiling 阅读(132) 评论(0) 推荐(0) 编辑
摘要: http://www.189works.com/article-101103-1.html 阅读全文
posted @ 2012-10-21 22:22 feiling 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 现在在做个车务通系统(网站),系统需要与远程的mina服务器端进行交换,服务器端由其他公司开发,只为我们提供接口,在我们的车务通系统中需要通过网络编程调用这些远程接口,所以车务通系统相当于mina的客户端(相对于mina服务器端而言)。流程是这样的 当车务通系统的客户端,也就是浏览器页面,发出请求,车务通系统中的servlet接收,调用mina客户端的Iosession.write()方法 向mina服务器端(也就是远程服务器)发送请求、调用接口后 , 远程服务器会返回响应的处理结果,然后在mina客户端(车务通系统中接收),messageReceive()方法负责接收,在这里遇到了问题,接收 阅读全文
posted @ 2012-10-21 22:21 feiling 阅读(2222) 评论(1) 推荐(0) 编辑
摘要: 先列点代码片段:// ...//// 此段代码功能为从 t.txt 里复制所有数据到 out_j.txt://...1 FileChannel fcin = new FileInputStream( "d:/t.txt" ).getChannel();2 FileChannel fcout = new FileOutputStream( new File( "d:/out_j.txt" )).getChannel();3 ByteBuffer buff = ByteBuffer.allocate( 1024 );4 long t1 = System.cu 阅读全文
posted @ 2012-10-21 22:04 feiling 阅读(499) 评论(0) 推荐(0) 编辑
摘要: http://space.itpub.net/14734416/viewspace-434476http://walsh.iteye.com/blog/450114 阅读全文
posted @ 2012-10-20 19:43 feiling 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 在用Maven构建使用JDK1.5编写的应用时,经常会遇到控制台输出“不支持泛型,请使用 -source 5 或更高版本以启用泛型”的异常信息,原因是你的应用中使用了JDK1.5的新特性:泛型编程,而Maven默认采用的JDK为JDK1.3,解决方案: 1 <build> 2 <plugins> 3 <plugin> 4 <groupId>org.apache.maven.plugins</groupId> 5 <artifactId>maven-compiler-plugin</artifactId> 6 & 阅读全文
posted @ 2012-10-12 13:19 feiling 阅读(761) 评论(0) 推荐(0) 编辑
摘要: ByBobbyon October 17, 2004 4:34 PM|Permalink|Comments (2)|TrackBacks (0)To copy an entire folder (directory tree) in Linux, use the following method:mkdir target_directorycd source_directorycp -ap . target_directoryOther options:cp -apv . target_directory(for verbose results)\cp -ap . target_directo 阅读全文
posted @ 2012-10-11 11:12 feiling 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 本文讲述了Linux命令行下常用svn命令的使用方法,希望对您有所帮助。1、Linux命令行下将文件checkout到本地目录svn checkout path(path是服务器上的目录)例如:svn checkout svn://192.168.1.1/pro/domain简写:svn co2、Linux命令行下往版本库中添加新的文件svn add file例如:svn add test.php(添加test.php)svn add *.php(添加当前目录下所有的php文件)3、Linux命令行下将改动的文件提交到版本库svn commit -m “LogMessage“ [-N] [-- 阅读全文
posted @ 2012-10-10 02:27 feiling 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 一、关于命令行工具SVN如果你不知道命令怎么用svn命令,可通过如下方式查询:svn help知道了子命令,但是不知道子命令的用法,还可以查询:svn help ci常用命令格式与举例导入项目svn import http://svn.chinasvn.com:82/pthread --message "Start project"导出项目svn checkout http://svn.chinasvn.com:82/pthread采用 export 的方式来导出一份“干净”的项目svn export http://svn.chinasvn.com:82/pthread p 阅读全文
posted @ 2012-10-09 11:13 feiling 阅读(287) 评论(0) 推荐(0) 编辑
摘要: http://wenku.baidu.com/view/db08a6c19ec3d5bbfd0a7411.html 阅读全文
posted @ 2012-10-03 23:47 feiling 阅读(241) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 43 下一页