A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Death、 中级黑马   /  2014-12-31 09:09  /  1529 人查看  /  12 人回复  /   2 人收藏 转载请遵从CC协议 禁止商业使用本文

1. 把Strings转换成int和把int转换成String
  • String a = String.valueOf(2);   //integer to numeric string
  • int i = Integer.parseInt(a); //numeric string to an int


2. 向Java文件中添加文本
  • Updated: Thanks Simone for pointing to exception. I have
  • changed the code.
  • BufferedWriter out = null;
  • try {
  • out = new BufferedWriter(new FileWriter(”filename”, true));
  • out.write(”aString”);
  • } catch (IOException e) {
  • // error processing code
  • } finally {
  • if (out != null) {
  • out.close();
  • }
  • }


3. 获取Java现在正调用的方法名
  • String methodName = Thread.currentThread().getStackTrace()[1].getMethodName ();


4. 在Java中将String型转换成Date型
  • java.util.Date = java.text.DateFormat.getDateInstance().parse(date String);
  • or
  • SimpleDateFormat format = new SimpleDateFormat( "dd.MM.yyyy" );
  • Date date = format.parse( myString );


5. 通过Java JDBC链接Oracle数据库
  • public class OracleJdbcTest
  • {
  • String driverClass = "oracle.jdbc.driver.OracleDriver";
  • Connection con;
  • public void init(FileInputStream fs) throws ClassNotFoundException,
  • SQLException, FileNotFoundException, IOException
  • {
  • Properties props = new Properties();
  • props.load (fs);
  • String url = props.getProperty ("db.url");
  • String userName = props.getProperty ("db.user");
  • String password = props.getProperty ("db.password");
  • Class.forName(driverClass);
  • con=DriverManager.getConnection(url, userName, password);
  • }
  • public void fetch() throws SQLException, IOException
  • {
  • PreparedStatement ps = con.prepareStatement("select SYSDATE from
  • dual");
  • ResultSet rs = ps.executeQuery();
  • while (rs.next())
  • {
  • // do the thing you do
  • }
  • rs.close();
  • ps.close ();
  • }
  • public static void main(String[] args)
  • {
  • OracleJdbcTest test = new OracleJdbcTest ();
  • test.init();
  • test.fetch();
  • }
  • }


[color=rgb(51, 102, 153) !important]


12 个回复

倒序浏览
很给力,以后肯定能用,收藏了
回复 使用道具 举报
方法不错。
回复 使用道具 举报
本帖最后由 赵越海 于 2016-7-8 17:37 编辑

         .
回复 使用道具 举报
多谢分享
回复 使用道具 举报
先收藏啦,谢谢分享
回复 使用道具 举报
恩恩,确实都是非常常用的,楼主总结的很好!
回复 使用道具 举报
收藏!!!
回复 使用道具 举报
支持一下~~~~~~~~~~~~~~~~~~~
回复 使用道具 举报
还行,就是代码不是很完整
回复 使用道具 举报
记录下来,以后或许用的着,谢谢
回复 使用道具 举报
嗯,不错      
回复 使用道具 举报
好的,get。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马