Я пытался некоторое время и не могу найти способ вывести текст из текстового поля только после того, как сканер штрих-кода завершит сканирование.Я использую Swing Framework и Java.Мой код работает, если текст вставлен (Ctrl + V) в JTextbox, но сканер штрих-кода просто не работает, так как мои методы выполняются для каждой пары символов штрих-кода по очереди.
Вот мой код:
public class pos extends javax.swing.JFrame{
private Timer updateTimer;
private ResultSet data;
ResultSet rs = null;
PreparedStatement pst = null;
public pos() {
initComponents();
this.setLocationRelativeTo(null);
Function f = new Function();
updateTimer = new Timer(10, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ResultSet rs = null;
rs = f.find(prodID.getText());
data = rs;
}
});
updateTimer.setRepeats(false);
prodID.getDocument().addDocumentListener(new DocumentListener(){
@Override
public void insertUpdate(DocumentEvent arg0){
warn();
}
@Override
public void removeUpdate(DocumentEvent arg0){
warn();
}
@Override
public void changedUpdate(DocumentEvent arg0){
warn();
}
});
}
protected void warn(){
try{
if(this.data.next()){
prodName.setText(this.data.getString("prodName"));
priceField.setText(String.valueOf(new Double(this.data.getString("price"))));
}else{
JOptionPane.showMessageDialog(null, "No Data for this ID");
}
}catch(Exception ex)
{
JOptionPane.showMessageDialog(null, ex);
}
updateTimer.restart();
}
public Connection getConnection(){
Connection con = null;
try{
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/fmgaccount","root","");
}catch(Exception ex){
}
return con;
}
public class Function{
Connection con = null;
public ResultSet find(String s){
try{
con = getConnection();
pst = con.prepareStatement("SELECT prodName, price FROM deliverystocks WHERE prodID=?");
pst.setString(1,s);
rs = pst.executeQuery();
}catch(Exception ex)
{
JOptionPane.showMessageDialog(null, ex);
}
return rs;
}
}