编译.java找不到符号

问题描述

BaseConn.java----------------------------------------------------------------------------------------------------------------------------packagenet.chat;importjava.sql.*;importjava.lang.ClassNotFoundException;publicclassBaseConn{Connectionconn=null;Statementstmt=null;PreparedStatementps=null;ResultSetrs=null;/***************************************************************************************BaseConn的构造函数,在这里完成数据库的初始化操作,即连接数据库操作**************************************************************************************/publicBaseConn()throwsSQLException,ClassNotFoundException{try{Stringurl="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=ChatRoom;SelectMethod=Cursor";Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");conn=DriverManager.getConnection(url,"sa","");stmt=conn.createStatement();}catch(SQLExceptione){System.out.println("ErroroccuredwhenConnectDataBase:"+e);throwe;}catch(ClassNotFoundExceptione){System.out.println("ErroroccuredwhenConnectDataBase:"+e);throwe;}}/**************************************************************************************初始化预编译的SQL语句的对象************************************************************************************/publicPreparedStatementprepaeStatement(Stringsql)throwsSQLException{try{ps=conn.prepareStatement(sql);returnps;}catch(SQLExceptione){System.out.println("ErroroccuredwhencreatepreparedStatement:"+e);throwe;}}/**************************************************************************************执行静态SQL查询语句并返回它所生成结果的对象************************************************************************************/publicResultSetececuteQuery(Stringsql)throwsSQLException{rs=null;try{rs=stmt.executeQuery(sql);}catch(SQLExceptionex){System.out.println("Erroroccuredwhenquerydatabase:"+ex);throwex;}returnrs;}/**************************************************************************************执行静态SQL查询语句并返回影响数据的条数************************************************************************************/publicintexecuteUpadate(Stringsql)throwsSQLException{try{conn.setAutoCommit(false);intre=stmt.executeUpdate(sql);conn.commit();returnre;}catch(SQLExceptione){conn.rollback();System.out.println("Erroroccuredwhenupdatedatabase:"+e);throwe;}}/**************************************************************************************执行预先SQL查询语句************************************************************************************/publicResultSetexecuteQuery()throwsSQLException{try{returnps.executeQuery();}catch(SQLExceptione){System.out.println("Erroroccuredwhenquerydatabase:"+e);throwe;}}/**************************************************************************************执行预编译的SQL更新语句************************************************************************************/publicintexecuteUpdate()throwsSQLException{try{conn.setAutoCommit(false);intr=ps.executeUpdate();conn.commit();returnr;}catch(SQLExceptione){conn.rollback();System.out.println("Erroroccuredwhenupdatadatabase:"+e);throwe;}}/**************************************************************************************数据库关闭操作************************************************************************************/publicbooleancloseDB()throwsSQLException{try{if(this.rs!=null)rs.close();if(this.stmt!=null)this.stmt.close();if(this.ps!=null)this.ps.close();if(this.conn!=null)conn.close();returntrue;}catch(SQLExceptione){System.out.println("Erroroccuredwhenclosedatabase:"+e);throwe;}}}---------------------------------------------------------------------------------------------------------------------------BaseConn.java编译通过CheckLogin.java----------------------------------------------------------------------------------------------------------------------------packagenet.chat;importjava.sql.*;importjava.util.*;importjava.text.SimpleDateFormat;importjava.lang.ClassNotFoundException;publicclassCheckLogin{/*检测用户登陆信息用户登陆的用户名用户登陆的密码*/publicStringchecklogin(StringuserName,StringuserPassword)throwsSQLException,ClassNotFoundException{BaseConnconn=null;try{conn=newBaseConn();//创建一个预先处理的SQL语句Stringsql="select*fromuserInfowherenickName=?";//创建一个预先处理的SQL对象PreparedStatementps=conn.preparedStatement(sql);ps.setString(1,userName);//从用户数据库中查询该用户名是否在数据库中ResultSetrs=conn.executeQuery();if(rs.next()){if(rs.getString("userPassword").equals(userPassword)){SimpleDateFormatcal=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss");Stringtime=cal.format(newjava.util.Date());//修改用户的最后登陆时间sql="updateuserinfosetlastLoginTime?wherenickName=?";ps=conn.prepareStatement(sql);ps.setString(1,time);ps.setString(2,userName);conn.executeUpdate();return"SUCCESS_LOGIN";}elsereturn"WRONG_PASSWORD";}elsereturn"NONE_USER";}catch(SQLExceptionex){ex.printStackTrace();throwex;}catch(ClassNotFoundExceptionex){ex.printStackTrace();throwex;}finally{conn.close();//关闭数据库连接,释放JDBC资源}}/*如果是新用户,则将用户登陆用户名和密码保存到数据库中*/publicbooleansaveToDataBase(StringuserName,StringuserPassword)throwsSQLException,ClassNotFoundException{BaseConnconn=null;try{conn=newBaseConn();SimpleDateFormatcal=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss");Stringtime=cal.format(newjava.util.Date());Stringsql="insertintouserInfo(nickName,userPassword,lastLoginTime)values(?,?,?)";PreparedStatementps=conn.prepareStatement(sql);ps.setString(1,userName);ps.setString(2,userPassword);ps.setString(3,time);conn.executeUpdate();returntrue;}catch(SQLExceptionex){ex.printStackTrace();throwex;}finally{conn.close();//关闭数据库连接,释放JDBC资源}}}------------------------------------------------------------------------------------------------------------------------------CheckLogin.java编译的时候出现错误D:ChatRoomWEB-INF>javacCheckLogin.javaCheckLogin.java:14:找不到符号符号:类BaseConn位置:类net.chat.CheckLoginBaseConnconn=null;^CheckLogin.java:17:找不到符号符号:类BaseConn位置:类net.chat.CheckLoginconn=newBaseConn();^CheckLogin.java:63:找不到符号符号:类BaseConn位置:类net.chat.CheckLoginBaseConnconn=null;^CheckLogin.java:66:找不到符号符号:类BaseConn位置:类net.chat.CheckLoginconn=newBaseConn();^4错误寻求帮助

解决方案

解决方案二:
换成eclipse来开发吧。在CheckLogin.java开头加上importnet.chat.*;
解决方案三:
更建议使用myEclipse
解决方案四:
可能是找不到BaseConn的类。可以设置一下classpath,把你的类根目录加入进去。或者编译时候直接指定如:javacclasspath=%classpath;./CheckLogin.java
解决方案五:
找不到BaseConn类。
解决方案六:
路径错咯,找不到BaseConn.java
解决方案七:
恩,可是我把CheckLogin.java放到net/chat文件夹下还是找不到。。myEclipse不会用。。

时间: 2024-09-17 02:27:45

编译.java找不到符号的相关文章

文件传输-java 编译出现找不到符号错误

问题描述 java 编译出现找不到符号错误 //导入包import javax.swing.JPanel;import javax.swing.JFrame;import javax.swing.JButton;import javax.swing.JTextArea;import javax.swing.JTextField;import static java.awt.BorderLayout.*;import javax.swing.JScrollPane;import java.awt.

javase-JAVA 程序在编译时找不到符号(按照书中的程序敲进去的)求助!!!

问题描述 JAVA 程序在编译时找不到符号(按照书中的程序敲进去的)求助!!! 我刚刚学习JAVA,看了几天书,今天安装了jdk-8u45-windows-x64后就按照书上的程序敲了一下的程序,可是编译的时候出现错误如下: c5_13.java:8:错误:找不到符号 System.out.Println("class name:"+this.getClass().getName()); 符号: 方法 Println(String) 位置:类型为PrintStream的变量 out c

maven配置的ssh在Action测试时候,java找不到符号

问题描述 maven配置的ssh在Action测试时候,java找不到符号 解决方案

javac 找不到符号-javac编译Servlet找不到符号

问题描述 javac编译Servlet找不到符号 这是我的代码: 这是我的classPath配置: 但javac 编译的时候还是报错: 求大神指点

java入门 错误: 找不到符号

问题描述 java入门 错误: 找不到符号 E:JspStudy>set path=C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;E:JspStudyjdkin E:JspStudy>cd .. E:>javac Q2.java E:>attrib Q2*A E:Q2.javaA E:Q2.class E:>javac -cp .;.. JspStudy/Q1.javaJspStudyQ1.java:4: 错误: 找不到符

java中报错找不到符号 符号类Calculate

问题描述 java中报错找不到符号 符号类Calculate 自己动手写了一个小程序,在eclipse中没有报错,但是在控制台报错了,有图片 代码如下:public class Calculate { private int num1; private int num2; private char option; public void initcalculate(int a1,int a2, char o){ num1=a1; num2=a2; if(o=='+'||o=='-'||o=='*

JAVA代码编译出错:找不到符号,求解答

问题描述 JAVA代码编译出错:找不到符号,求解答 源代码: package com.tarena.shoot; import java.util.Random; //Airplane----敌机既是飞行物, public class Airplane extends FlyingObject implements Enemy{ private int speed = 2;//敌机走步的步数 public Airplane(){ image = ShootGame.airplane; width

xml-求大神帮忙看看,新定义的style编译时一直提示找不到符号是怎么回事?

问题描述 求大神帮忙看看,新定义的style编译时一直提示找不到符号是怎么回事? 在frameworks/base/core/res/res/values下的styles中新定义了一个style,并在frameworks/base/core/java/android/webkit/JsDialogHelper.java中使用,但是编译的时候一直报错,找不到符号,是为什么?求各位大神帮忙看看-- 解决方案 代码如下:很简单的代码-- styles文件中:<br> <item name=&q

dos 编译java 自己创建的类找不到?怎么解?

问题描述 dos 编译java 自己创建的类找不到?怎么解? 路径:com.test:一类:package com.web; class Function{ public int add(int aint b){ return a+b; }}二类:package com.web;import com.web.Function;class Fun{ public int reduce(int aint b){ Function f = new Function(); return f.add(ab