java excepted_error: class, interface, or enum expected (implement java)

I have been practicing the use of interfaces in java, but I have a small problem when I want to launch one of my classes. This is the error:

./Jbdc.java:18: error: introducir() in Jbdc cannot implement introducir() in InterfazBD

public void introducir() throws Exception

overridden method does not throw Exception

1 error

most of the errors that the compiler shows me come from there. I'm telling you, I'm learning the use of interfaces and I do not really know how to use them correctly.. so I do not know how I could solve this type of error.. this is my code:

(Principal)

public class App{

public static void main(String arg[]){

JsonRead json = new JsonRead();

Jbdc sqlite = new Jbdc();

grabarJson(json);

introducirSQL(sqlite);

}

public static void grabarJson(InterfazGrabar fichero){

fichero.grabar();

}

public static void grabarTxt(InterfazGrabar fichero){

fichero.grabar();

}

public static void introducirSQL(InterfazBD fichero){

fichero.introducir();

}

}

and the Jbdc file

Jbdc (this file enter the data in a database)

public class Jbdc implements InterfazBD{

private static final String URL = "jdbc:sqlite:test.db";

public void introducir() throws Exception{

createDb();

createTable();

Aula a = null;

int contador = 0;

try {

FileInputStream inFile = new FileInputStream("aula.dat");

ObjectInputStream in = new ObjectInputStream(inFile);

while (inFile.available()>0) {

a = (Aula)in.readObject();

String materiaslista ="";

String nombre = a.getNombre();

String grupo = a.getGrupo();

int tutor= a.getTutor();

ArrayList materias = a.getMaterias();

for (int counter = 0; counter < materias.size(); counter++) {

materiaslista = materiaslista + materias.get(counter) + ",";

}

insertDatos(nombre,grupo,tutor,materiaslista);

}

}

catch(IOException e)

{

System.err.println("ERROR");

}

System.out.println("¡Listo!");

}

private static void insertDatos(String nombre,String grupo, int tutor,String materiaslista) {

final String SQL = "INSERT INTO datos VALUES(?,?,?,?)";

try (Connection con = getConnection(); PreparedStatement ps = con.prepareStatement(SQL);) {

ps.setString(1, nombre);

ps.setString(2, grupo);

ps.setInt(3, tutor);

ps.setString(4, materiaslista);

ps.executeUpdate();

} catch (SQLException e) {

e.printStackTrace();

}

}

private static void createTable() {

final String SQL = "CREATE TABLE IF NOT EXISTS datos (nombre TEXT,grupo TEXT, tutor INTEGER, materiaslista TEXT);";

// This SQL Query is not "dynamic". Columns are static, so no need to use

// PreparedStatement.

try (Connection con = getConnection(); Statement statement = con.createStatement();) {

statement.executeUpdate(SQL);

} catch (SQLException e) {

e.printStackTrace();

}

}

private static void createDb() {

try (Connection conn = getConnection()) {

if (conn != null) {

conn.getMetaData();

}

} catch (SQLException e) {

e.printStackTrace();

}

}

public static Connection getConnection() throws SQLException {

return DriverManager.getConnection(URL);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>