为了账号安全,请及时绑定邮箱和手机立即绑定

Java Servlet - 找不到符号 - 同一文件夹中的对象

Java Servlet - 找不到符号 - 同一文件夹中的对象

白衣染霜花 2021-08-13 16:37:05
我编写了以下两个类:设备.javaclass Equipment{  private int id;    private String name;    private String local;  public void setId(int id){    this.id = id;  }  public void setName(String n){    this.name = n;  }  public void setLocal(String l){    this.local = l;  }  public int getId(){    return this.id;  }  public String getName(){    return this.name;  }  public String getLocal(){    return this.local;  }}我用这门课进行了测试,效果很好import java.util.*;import java.sql.*;class MainTest{  public static void main(String[] args) throws SQLException {    JDBCCommands jdbc = new JDBCCommands();    //jdbc.Create("Teste novo", "Novo Teste");    for(Equipment c : jdbc.Show()){      System.out.print(c.getId() + " ");      System.out.print(c.getName() + " ");      System.out.print(c.getLocal() + "\n");    }    System.out.println("-------------------------------------");    for(Equipment c : jdbc.Search("est n" , "est")){      System.out.print(c.getId() + " ");      System.out.print(c.getName() + " ");      System.out.print(c.getLocal() + "\n");    }  }}
查看完整描述

1 回答

?
HUX布斯

TA贡献1876条经验 获得超6个赞

我只需要将.jar 文件,用于与MariaDB 的连接,放在lib 文件夹中,现在一切正常。


查看完整回答
反对 回复 2021-08-13
  • 1 回答
  • 0 关注
  • 261 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信