黑马程序员技术交流社区
标题:
5个JAVA人员非常有用的功能代码
[打印本页]
作者:
Death、
时间:
2014-12-31 09:09
标题:
5个JAVA人员非常有用的功能代码
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]
作者:
xiao飞
时间:
2014-12-31 09:39
很给力,以后肯定能用,收藏了
作者:
it667135
时间:
2015-1-1 00:55
方法不错。
作者:
赵越海
时间:
2015-1-1 03:22
本帖最后由 赵越海 于 2016-7-8 17:37 编辑
.
作者:
李一白_
时间:
2015-1-1 09:29
多谢分享
作者:
任我行_2014
时间:
2015-1-1 10:22
先收藏啦,谢谢分享
作者:
moto风暴
时间:
2015-1-1 10:24
恩恩,确实都是非常常用的,楼主总结的很好!
作者:
范中俊
时间:
2015-1-1 11:05
收藏!!!
作者:
Afridoce
时间:
2015-1-1 11:11
支持一下~~~~~~~~~~~~~~~~~~~
作者:
abc784990536
时间:
2015-1-1 11:17
还行,就是代码不是很完整
作者:
jinghoujiayin
时间:
2015-1-4 22:39
记录下来,以后或许用的着,谢谢
作者:
董晗
时间:
2015-1-4 22:44
嗯,不错
作者:
jian叫兽
时间:
2015-1-4 23:37
好的,get。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2