- 博客(18)
- 收藏
- 关注
原创 测试 读取网上文件到本机
public static void main(String[] args) throws IOException { long currentTimeMillis = System.currentTimeMillis(); URL url= new URL ("http://img.resds.com/sysimg/Register11.html...
2012-03-03 15:23:58 109
原创 UDP
2.InetAddress类 ip类 表示互联网协议 (IP) 地址。 该类没有构造函数,不能new对象, 通过方法获取对象. InetAddress getLocalHost() 返回本地主机。 InetAddress getByName(String host) 在...
2012-03-03 11:00:44 182
原创 java io流
1.字节流 public static void main(String args[]) throws IOException { FileInputStream fis=new FileInputStream("C:\\1.jpg") ; FileOutputStream fos=new FileOutput...
2012-03-01 23:27:31 109
原创 fielderror.ftl
需要重启 conf\Catalina\localhost\abc.xml 文件 abc为虚拟目录 1.多路径aaa#bbb 2.默认的web应用 ROOT.xml struts标签自动功能 您的验证码输入有误! ...
2012-02-28 23:43:07 156
原创 mysql远程连接
1。改表法。 可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%" mysql -u root -pvmwaremysql>use mysql;mysql>update user set host = '%' wher
2012-02-07 15:02:23 84
原创 Nexus的配置
安装 Maven 1. Maven: 版本 3.0.3。将apache-maven-3.0.3-bin.zip解压到dev_env 路径:C:\dev_env\maven\apache-maven-3.0.3 2. 可执行 mvn -v ,检查mvn是否配置正确。 3. 执行mvn help:system,使系统自动创建本地仓库。本地maven仓库在C:\Users\用户名\.m2...
2012-02-03 17:22:54 181
原创 Maven中配置文件
M2 setting文件 nexus * Human Readable Name for this Mirror. http://localhost:8080/nexus/comtent/group/public nexus ...
2012-02-01 13:35:04 80
原创 SSH2.5struts2和spring整合 oa 3
1,在web.xml中配置Spring的监听器,用于创建ApplicationContext对象。 2,添加一个jar包:struts2-spring-plugin.jar(整合用的Struts2插件)。 web.XML文件的配置 org.springframework.web.context.ContextLoaderListener con...
2012-01-30 22:49:40 105
原创 SSH2.5hibernate和spring整合 oa 1
1.导入好jre 包 2.放置好配置文件 3.整合hibernate和spring(保证数据库) 4.测试hibernate和spring的整合 public class SpringTest { private ApplicationContext ac = new ClassPathXmlApplicationContext("applicationConte...
2012-01-30 22:37:07 109
原创 J2EE项目前奏
1,资源分类 源码: src, config, test 样式+图片 style/, style/images/ 脚本文件 script/ JSP: WEB-INF/jsp/ 2,添加框架环境 Junit Struts2 Hibernate Spring 3,SSH整合 Sprin...
2012-01-30 21:53:29 108
原创 struts2约束提示
struts.xml文件中没有提示代码,导入去约束dtd文件。 在myeclipse中 Preferences 下的 XML Catalog 中 add (事先将dtd文件放置到工程目录中) 选择 workspace 选择dtd文件;然后选择 System Id ,将key为空间名称("http://struts.apache.org/dtds/struts-2.0.dtd...
2012-01-30 21:40:57 199
原创 hibernate自定义主键
public class UUIDGenerator implements IdentifierGenerator{ public Serializable generate(SessionImplementor arg0, Object arg1) throws HibernateException { String id=UUID.randomUUID().t...
2012-01-16 13:01:02 128
原创 编码模板
/** * ${file_name} * Effect: * * Copyright 公司名称 All right reserved. * @author Tom * Time: ${date} ${time} * @version 1.0 * 最后修改人:无 * ${tags} */ Mothod /**Effect:...
2012-01-16 11:44:43 182
原创 创建目录
@Test public void createPath() throws IOException{ String timePath=new SimpleDateFormat("/yyyy/MM/dd/").format(new Date()); String path = "E:\\Tom\\upload\\email"+timePath; System....
2012-01-12 13:51:49 112
原创 枚 聚
public enum EmailType { //0 :成功 1:失败 SUCCESS(0),ERROR(1); private int value; private EmailType(int value){ this.value=value; } public int getValue(){ return va...
2012-01-08 23:37:22 137
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人