java 局部变量使用范围_java – 局部变量范围的问题 如何解决?

在尝试使用非final或非有效final局部变量在Java中执行SQL语句时遇到错误。问题出现在mouseDown方法中,当尝试从文本框获取数据并插入数据库时,'statement'必须为final。尝试将'statement'声明为final导致新的错误。
摘要由CSDN通过智能技术生成

尝试在我的代码中执行statemet.executeUpdate()时,我收到以下错误:

Local variable statement defined in an enclosing scope must be final or effectively final.

这是我的代码到目前为止

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;.

import org.eclipse.swt.SWT;

import org.eclipse.swt.events.MouseAdapter;

import org.eclipse.swt.events.MouseEvent;

import org.eclipse.swt.widgets.Button;

import org.eclipse.swt.widgets.Display;

import org.eclipse.swt.widgets.Label;

import org.eclipse.swt.widgets.Shell;

import org.eclipse.swt.widgets.Text;

public class a1 {

protected Shell shell;

private Text text;

private Text text_1;

private Text text_2;

private Text text_3;

/**

* Launch the application.

* @param args

*/

public static void main(String[] args) {

try {

a1 window = new a1();

window.open();

} catch (Exception e) {

e.printStackTrace();

}

}

/**

* Open the window.

*/

public void open() {

Display display = Display.getDefault();

createContents();

shell.open();

shell.layout();

while (!shell.isDisposed()) {

if (!display.readAndDispatch()) {

display.sleep();

}

}

}

/**

* Create contents of the window.

*/

protected void createContents() {

Connection connect = null;

ResultSet resultSet = null;

try {

Class.forName("com.mysql.jdbc.Driver");

} catch (ClassNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

try {

connect = DriverManager.getConnection("jdbc:mysql://localhost/railwaydb", "root", "");

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

Statement statement = null;

// statements allow to issue SQL queries to the database

try {

statement = connect.createStatement();

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

shell = new Shell();

shell.setSize(450, 300);

shell.setText("SWT Application");

Label lblName = new Label(shell, SWT.NONE);

lblName.setBounds(10, 43, 47, 15);

lblName.setText("Name");

Label lblFrom = new Label(shell, SWT.NONE);

lblFrom.setBounds(10, 74, 55, 15);

lblFrom.setText("From");

Label lblTo = new Label(shell, SWT.NONE);

lblTo.setBounds(10, 105, 55, 15);

lblTo.setText("To");

Label lblPrice = new Label(shell, SWT.NONE);

lblPrice.setBounds(10, 137, 55, 15);

lblPrice.setText("Price");

text = new Text(shell, SWT.BORDER);

text.setBounds(64, 43, 76, 21);

text_1 = new Text(shell, SWT.BORDER);

text_1.setBounds(64, 74, 76, 21);

text_2 = new Text(shell, SWT.BORDER);

text_2.setBounds(64, 105, 76, 21);

text_3 = new Text(shell, SWT.BORDER);

text_3.setBounds(64, 137, 76, 21);

Label lblRailwayDatabase = new Label(shell, SWT.NONE);

lblRailwayDatabase.setBounds(174, 10, 97, 15);

lblRailwayDatabase.setText("Railway Database");

Label lblCreateView = new Label(shell, SWT.NONE);

lblCreateView.setBounds(189, 43, 76, 15);

lblCreateView.setText("Create View");

Button btnName = new Button(shell, SWT.CHECK);

btnName.setBounds(189, 73, 93, 16);

btnName.setText("Name");

Button btnFrom = new Button(shell, SWT.CHECK);

btnFrom.setBounds(189, 105, 93, 16);

btnFrom.setText("From");

Button btnTo = new Button(shell, SWT.CHECK);

btnTo.setBounds(189, 137, 93, 16);

btnTo.setText("To");

Button btnPrice = new Button(shell, SWT.CHECK);

btnPrice.setBounds(189, 171, 93, 16);

btnPrice.setText("Price");

Button btnInsert = new Button(shell, SWT.NONE);

btnInsert.addMouseListener(new MouseAdapter() {

@Override

public void mouseDown(MouseEvent e) {

String name = text.getText();

String from = text_1.getText();

String to = text_2.getText();

String price = text_3.getText();

String query = "INSERT INTO booking (name, fromst, tost, price) VALUES ('"+name+"', '"+from+"', '"+to+"', '"+price+"')";

try {

statement.executeUpdate(query);

} catch (SQLException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

}

}

});

btnInsert.setBounds(10, 171, 75, 25);

btnInsert.setText("Insert");

Button btnView = new Button(shell, SWT.NONE);

btnView.setBounds(307, 74, 75, 25);

btnView.setText("View");

Button btnIndex = new Button(shell, SWT.NONE);

btnIndex.setBounds(307, 127, 75, 25);

btnIndex.setText("Index");

}

}

我也试图设置声明final,但声明给我另一个错误。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值