如何在linux环境下调试JAVA程序使用访问timesten:

简介:

 

一.如何在linux环境下调试JAVA程序使用访问timesten:

1.配置jdk环境变量:

上传jdk-6u7-linux-i586.bin文件到/data0/目录下,执行如下命令: 
[root@ora11gr2 data0]#chmod 777 jdk-6u7-linux-i586.bin 
[root@ora11gr2 data0]#./jdk-6u7-linux-i586.bin 
[root@ora11gr2 data0]# ln -sn /data0/jdk1.6.0_07/ /usr/java 前面为源,后面为目的 
[root@ora11gr2 data0]# vim /etc/profile 
在文件最后,添加如下三行: 
export JAVA_HOME=/data0/jdk1.6.0_07 
export CLASSPATH=.:$JAVA_HOME/lib:$JAVA_HOME/jre/lib 
export PATH=/usr/java/bin:$PATH

[root@ora11gr2 data0]# source /etc/profile

timesten用户环境变量文件~/.bash_profile下添加如下几行: 
[timesten@ora11gr2 ~]$ vim ~/.bash_profile 
#add timsten env 
export ORACLE_SID=mytest 
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK 
export ORACLE_HOME=/app/oracle/product/11.2.0/db_1 
export TT_HOME=/data0/timesten/TimesTen/tt1122 
export TNS_ADMIN=/app/oracle/product/11.2.0/db_1/network/admin 
export CLASSPATH=/data0/timesten/TimesTen/tt1122/lib/ttjdbc5.jar:/app/oracle/product/11.2.0/db_1/jdbc/lib/ojdbc5.jar:$CLASSPATH 
export PATH=/data0/timesten/TimesTen/tt1122/bin/:$ORACLE_HOME/bin:$PATH 
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib:$ORACLE_HOME/network/lib:/data0/timesten/TimesTen/tt1122/lib:$LD_LIBRARY_PATH

[timesten@ora11gr2 ~]$ javac 
Usage: javac <options> <source files> 
where possible options include: 
-g Generate all debugging info 
-g:none Generate no debugging info 
-g:{lines,vars,source} Generate only some debugging info 
-nowarn Generate no warnings 
-verbose Output messages about what the compiler is doing 
-deprecation Output source locations where deprecated APIs are used 
-classpath <path> Specify where to find user class files and annotation processors 
-cp <path> Specify where to find user class files and annotation processors 
-sourcepath <path> Specify where to find input source files 
-bootclasspath <path> Override location of bootstrap class files 
-extdirs <dirs> Override location of installed extensions 
-endorseddirs <dirs> Override location of endorsed standards path 
-proc:{none,only} Control whether annotation processing and/or compilation is done. 
-processor <class1>[,<class2>,<class3>...]Names of the annotation processors to run; bypasses default discovery process 
-processorpath <path> Specify where to find annotation processors 
-d <directory> Specify where to place generated class files 
-s <directory> Specify where to place generated source files 
-implicit:{none,class} Specify whether or not to generate class files for implicitly referenced files 
-encoding <encoding> Specify character encoding used by source files 
-source <release> Provide source compatibility with specified release 
-target <release> Generate class files for specific VM version 
-version Version information 
-help Print a synopsis of standard options 
-Akey[=value] Options to pass to annotation processors 
-X Print a synopsis of nonstandard options 
-J<flag> Pass <flag> directly to the runtime system

[timesten@ora11gr2 ~]$ javac -version 
javac 1.6.0_07

2.编写JAVA测试代码:

[timesten@ora11gr2 ~]$ cat TTtest.java 
import java.sql.*; 
import javax.sql.*; 
public class TTtest{ 
public static void main(String args[]) 

//String URL = "jdbc:timesten:client:dsn=lujgCS_1122"; Remote Connect Strings 
String URL = "jdbc:timesten:direct:dsn=lujg_1122";

Connection con = null; 
try { 
Class.forName("com.timesten.jdbc.TimesTenDriver"); 

catch (ClassNotFoundException ex) 
{ex.printStackTrace(); 

try { 
con = DriverManager.getConnection(URL); 
System.out.println("connected"); 
java.sql.Statement st=con.createStatement(); 
java.sql.ResultSet rs=st.executeQuery("select * from test"); 
while (rs.next()) 

System.out.println(rs.getString("id")); 
}

con.close(); 
} catch (SQLException ex) { 
ex.printStackTrace();} 

}

编译程序:

[timesten@ora11gr2 ~]$ javac TTtest.java 
[timesten@ora11gr2 ~]$ ll 
-rw-r--r-- 1 timesten oinstall 1395 Mar 8 10:13 TTtest.class 
-rwxr-xr-x 1 timesten oinstall 715 Mar 8 10:13 TTtest.java

查看执行结果:

[timesten@ora11gr2 ~]$ java TTtest 
connected 
100 
200 
300

 

 

     本文转自vcdog 51CTO博客,原文链接:http://blog.51cto.com/255361/838318,如需转载请自行联系原作者


相关文章
|
2月前
|
SQL 安全 Java
Java 异常处理:筑牢程序稳定性的 “安全网”
本文深入探讨Java异常处理,涵盖异常的基础分类、处理机制及最佳实践。从`Error`与`Exception`的区分,到`try-catch-finally`和`throws`的运用,再到自定义异常的设计,全面解析如何有效管理程序中的异常情况,提升代码的健壮性和可维护性。通过实例代码,帮助开发者掌握异常处理技巧,确保程序稳定运行。
58 1
|
2月前
|
分布式计算 Java Hadoop
linux中HADOOP_HOME和JAVA_HOME删除后依然指向旧目录
通过以上步骤,可以有效地解决 `HADOOP_HOME`和 `JAVA_HOME`删除后依然指向旧目录的问题。确保在所有相关的配置文件中正确设置和删除环境变量,并刷新当前会话,使更改生效。通过这些措施,能够确保系统环境变量的正确性和一致性。
34 1
|
2月前
|
IDE Java 编译器
开发 Java 程序一定要安装 JDK 吗
开发Java程序通常需要安装JDK(Java Development Kit),因为它包含了编译、运行和调试Java程序所需的各种工具和环境。不过,某些集成开发环境(IDE)可能内置了JDK,或可使用在线Java编辑器,无需单独安装。
103 1
|
3月前
|
Java Maven 数据安全/隐私保护
如何实现Java打包程序的加密代码混淆,避免被反编译?
【10月更文挑战第15天】如何实现Java打包程序的加密代码混淆,避免被反编译?
565 2
|
Linux 网络安全 数据安全/隐私保护
|
2月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
207 8
|
2月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
848 6
|
2月前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
134 3
|
2月前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
107 2
|
1月前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
80 14
Linux 10 个“who”命令示例