- 浏览: 44251 次
- 性别:
- 来自: 广州
最新评论
-
www.sendmaillist.com:
pop3 和 smtp
java邮件
文章列表
http://phpeclipse.sourceforge.net/update/nightly_1.2.x/
创建一张图片j2me
- 博客分类:
- j2me
1.创建
Image img = Image.createImage(136,34);
2.拿取画笔
Graphics gg = img.getGraphics();
3.设置颜色
gg.setColor(0);
4.填充颜色
gg.fillRect(0, 0, img.getWidth(), img.getHeight() );
5.画出图片
g.drawImage(img, 0, 0, 0);
jdk(j2ee)环境配置 与 WTK
- 博客分类:
- j2me
安装完成jdk之后,就配置
新建环境变量 JAVA_HOME 变量值就是刚才安装JDK的路径
JAVA_HOME jdk安装根目录; eg: C:\Program Files\Java\jdk1.6.0_10
classpath .; %JAVA_HOME%\lib\dt.jar; %JAVA_HOME%\lib\tools.jar;%JAVA_HOME%
\lib\htmlconverter.jar
最后是编辑(注意: 不是新建) Path,我们在path的值前面添加
%JAVA_HOME%\bin; 后面的保持不变...
...
private static String readFileContent(File file) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
StringBuffer content = new StringBuffer();
for (String line = null; (line =reader.readLine()) != null; ){
content.append( ...
1.读取hibernate.cfg.xml配置文件
Configuration cfg = new Configuration();
SessionFactory sf = cfg.configure().buildSessionFactory();
org.hibernate.Session session = sf.openSession();
session.beginTransaction();
session.save(s);
session.getTransaction().commit();
session.close();
sf.close();
...
1. 解决myeclipse7的jvm问题
"E:\Program Files\MyEclipse 7.0M1\eclipse\eclipse.exe" -vm "e:\Program Files\MyEclipse 7.0M1\jre\bin\javaw.exe" -XX:PermSize=128M-XX:MaxPermSize=256M
2.
项目代码....先运行起来..理清只要的....会用...不求读懂每个类....
用注解写...开发效率高....比你写打码强多了
配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
...
读取spring配置文件
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("/applicationContext.xml");
Message msg = (Message)ctx.getBean("msgBean");
msg.setContent("welcome to lrs.com.cn");
System.out.println(msg.getContent());
1.空白关键帧:就是空心圆
2.关键帧:就是实心圆
区别:
空白关键帧是下面场景是没有东西的...反之....关键帧是有东西的
3.第1个关键帧,表示第1秒,10
第2个关键帧.表示第2秒,9
4.插入关键帧的快捷键:F6
5.发布作品: Ctrl+E ...
案例
insert into new_trends(namestring,detstring,begindate) values('sheng1','没有做不到的,只有想不到的.',now())
delete from new_trends where id=1
update new_trends set namestring='lrstom',detstring='不再犹豫' where id=3
select id,namestring,detstring,begindate from new_trends order by id desc limit 0, ...
1.加入spring的包
spring.jar
commons-pool-1.5.6.jar
commons-logging-1.1.1.jar
commons-dbcp-1.4.jar
common-annotations.jar
aspectjweaver.jar
aspectjrt.jar
cglib-nodep-2.1_3.jar
2.在web.xml配置
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listen ...
DB2 org.hibernate.dialect.DB2Dialect
DB2 AS/400 org.hibernate.dialect.DB2400Dialect
DB2 OS390 org.hibernate.dialect.DB2390Dialect
PostgreSQL org.hibernate.dialect.PostgreSQLDialect
MySQL5 org.hibernate.dialect.MySQL5Dialect
MySQL5 with InnoDB org.hibernate.dialect.MySQL5InnoDBDialect
MySQ ...