- 浏览: 42792 次
- 性别:
- 来自: 浙江
最新评论
-
xiaofei214117:
可是我电脑上没装oracle,直接连的是服务器啊。
Win7 x64 PL/SQL 连接 Oralce 提示 Could not initialize "%ORACLE_HOME%\bin\oci.dll" -
光头老XX:
你未免太懒了!
xstream使用小记 -
huanglei7211:
真好,恰好遇到这个问题
Win7 x64 PL/SQL 连接 Oralce 提示 Could not initialize "%ORACLE_HOME%\bin\oci.dll"
文章列表
1、用java代码造好数据,这里就用1000条
package Utils;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
public class CreateMysqlData {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
FileWriter fw ...
前段时间因为项目中要把xml转为java对象,所以接触了xstream。
所有的代码都在附件中,有各种情况的案例。
1、定义:
private static Log log = LogFactory.getLog(Write2File.class);
2、定义:
log4j.properties
3、使用:
log.info("eror");
log.debug("debug");
public static void main(String[] args)throws Exception {
String s1 = "汉字";
byte[] buff = s1.getBytes("GBK");
System.out.println(buff.length);//4,汉字在GBK里面刚好是4个字节。
String tmp = new String(buff,"ISO-8859-1");//把4个字节的字节数组按ISO方式转化成字符串
...
Properties Editor
- 博客分类:
- 工具使用
Eclipse下编辑properties文件的插件,用来写国际化程序非常方便,自动保存为ASCII码。日本人开发的,所以介绍网页全是日文。
http://www.oschina.net/p/properties+editor
在文件夹中要快速定位到一个文件夹的时候可以直接按首字母就可以快速定位,不知道什么原因,就不可以了。
解决方案:
1、打开文件夹和搜索选项。
2、点击查看标签,然后选择“在视图中选择键入项”,再点击确定即可。
在setting.xml文件中,<setting>标签下 添加
<localRepository>D:/.m2/asiainfo_repository/repository</localRepository>
setting.xml为指定项目的配置文件,非全局配置文件。
Maven常用命令(完善中。。。)
进入项目目录,与pom.xml同级目录.
清理
mvn clean
编译,跳过测试
mvn install -Dmaven.test.skip=true
http://my.oschina.net/coda/blog/33678
迁入 Incoming view
- 需要更新的文件。
A file that has content changes committed to the repository that will be applied to the local copy.
- 需要迁入的新增文件。
A new file that will be added to the local copy from the repository. Like the outgoing file addition, thi ...
错误信息:
Eclipse is running in a JRE,but a JDK is required
Some Maven plugins may not work when importing projects or updating source folders.
这是因为Eclipse默认运行在JRE上的,而m2eclipse的一些功能要求使用JDK。解决方式是配置Eclipse安装目录的eclipse.ini文件,添加vm配置指向JDK。
例如:
--launcher.XXMaxPermSize
256m
-vm
D:\java\jdk1. ...
Eclipse添加SVN、Maven插件
SVN安装地址:http://subclipse.tigris.org/update_1.6.x
选择Subclipse一项即可。
Maven安装地址:http://m2eclipse.sonatype.org/sites/m2e
http://m2eclipse.sonatype.org/sites/m2e-extras
以上地址已无效,新地址为:http://subc ...
Spring 图片上传实例
- 博客分类:
- Spring
详细请参考如下博客:
http://hi.baidu.com/yuwenxinfirst/item/0549534b12b3c60cc116137b
http://woshixushigang.iteye.com/blog/1258404
http://www.cnblogs.com/frankliiu-java/articles/1780511.html
Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”
需要导入 jstl-impl-1.2.jar
http://static.springsource.org/spring/docs/2.5.x/reference/jdbc.html#jdbc-JdbcTemplate
Querying (SELECT)
A simple query for getting the number of rows in a relation.
int rowCount = this.jdbcTemplate.queryForInt("select count(0) from t_accrual");
A simple query using a b ...
oracle客户端连接服务器基本配置
- 博客分类:
- 数据库
详解链接:http://blog.csdn.net/llhhyy1989/article/details/7678467