2

次のエラーメッセージが表示され続けますjava.lang.IllegalStateException:バッファが作成されていません。これに出くわしたのはこれが初めてで、安全に取り除く方法がわかりません。私はこのエラーメッセージを調査しましたが、私が遭遇した唯一の解決策は、次のものを使用することでした。

createBufferStrategy(2);

私の理解では、Javaはデフォルトでダブルバッファリングであり、上記の行は必要ありません。(ちなみに、エラーが発生する前は、バッファをまったくいじっていませんでした)。EDTの外部で何かをレンダリングしている場合、このメッセージが表示される可能性があると言う人もいます。

以下は、アプリケーションの機能を示すために作成したサンプルコードです。まず、アプリケーションはNetBeansプラットフォーム(RCP)で記述されています。BarcodeInputクラスは、ワーカーBarcodeProcessWorkerがそのデータをさらに処理するよりも、シリアルポートに接続されたバーコードスキャナーを介して入ってくるデータを受け取ります。以下に示すコードの方法は、エラーメッセージを表示せずにうまく機能しますが、SwingUtilities.invokeLaterを使用すると、エラーメッセージが表示されます。すべての更新はEDTで実行する必要があるため、バックグラウンドスレッドからSwingUtilities.invokeLaterを使用してGUIを更新する必要があると思ったので、意味がありません。

    public final class MainTopComponent extends TopComponent {//NetBeans TopComponent

        public MainTopComponent() {        
            initComponents();//The MainJPanel is created here
            ...
        }

    }

    public class MainJPanel extends javax.swing.JPanel{

        private SerialPortConnection spc;

        public MainJPanel() {
            initComponents();//Paints GUI components
            initSerialPortConnection();//Initialize the Serial Port (SerialPortConnection spc) for the Barcode Scanner
            initBarcode();
        }

        private void initBarcode(){
            BarcodeInput bsi = new BarcodeInput(bspc);
        }

    }

    public class BarcodeInput implements BarcodeSerialPortListener{

        private BarcodeSerialPortConnection bspc;
        private BarcodeJDialog barcodeJDialog;

        public BarcodeInput(BarcodeSerialPortConnection bspc) {
            this.bspc = bspc;
            barcodeJDialog = new barcodeJDialog();//This is just a regular JDialog with some labels displayed and among them is a label called labelBarcode
        }

        public void addToBarcodeSerialPortListenerList() {
            bspc.addToBarcodeSerialPortListenerList(this);
        }

        public boolean isBarcodeJDialogVisible(){
            return barcodeJDialog.isVisible();
        }

        public void showBarcodeJDialog(){
            barcodeJDialog.setVisible(true);
        }

        public void hideBarcodeJDialog(){
            barcodeJDialog.setVisible(false);
        }

        public void setTextOfLabelBarcode(String s){
            barcodeJDialog.setTextOfLabelBarcode(s);
        }

        @Override
        public void stringReveivedFromSerialPort(String serialPortString) {//Overrides the method in the interface BarcodeSerialPortListener
            BarcodeProcessWorker bpWorker = new BarcodeProcessWorker(this, serialPortString);
            bpWorker.execute();//This swing worker class processes the received serial port string
        }

    }


public class BarcodeProcessWorker extends SwingWorker<Void,Void>{

    private BarcodeInput bi;
    private String serialPortString;

    public BarcodeProcessWorker(BarcodeInput bi, String serialPortString){
        this.bi = bi;
        this.serialPortString = serialPortString;
    }

    @Override
    protected Void doInBackground() throws Exception{

        if("SHOW".contains(serialPortString)){

        //First I remove the SHOW from the serialPortString and whatever is left is the data:
        //For example if the barcode had SHOW12345, I end up with 12345 as data. SHOW is just a command
        //that tells my application to display the BarcodeJDialog, where HIDE tells it to hide the BarcodeJDialog.

            ShowBarcode sb = new ShowBarcode(bi, barcodeData);
            sb.show();

        }else if("HIDE".equals(serialPortString){

            bi.hideBarcodeJDialog();//WORKS LIKE THIS, DOES NOT WORK AS SHOWN BELOW

            //If I use the following here, I get that error message
            //  SwingUtilities.invokeLater(new Runnable(){
            //      @Override
            //      public void run(){
            //          bi.hideBarcodeJDialog();
            //      }
            //  });

        }

        return null;
    }

}

public class ShowBarcode {

    private BarcodeInput bi;
    private String barcodeData;

    public ShowBarcode(BarcodeInput bi, String barcodeData){
        this.bi = bi;
        this.barcodeData = barcodeData;
    }

    public void show(){

        bi.setTextOfLabelBarcode(barcodeData);//Set text as 12345
        bi.showBarcodeJDialog();//WORKS LIKE THIS, DOES NOT WORK AS SHOWN BELOW

        //If I use the following here, I get that error message
        //  SwingUtilities.invokeLater(new Runnable(){
        //      @Override
        //      public void run(){
        //      bi.setTextOfLabelBarcode(barcodeData);//Set text as 12345
        //      bi.showBarcodeJDialog();
        //      }
        //  });

    }

}
4

1 に答える 1

2

SwingUtilities.invokeLater()すべての更新はEDTで実行する必要があるため、バックグラウンドスレッドからGUIを更新する必要があると思いました。

いいえ、このdoInBackground()に示すように、は通常、以下の2つのメソッドの一方または両方を呼び出します。

  • publish():公開された値はprocess()、EDTで実行されるによって処理される必要があります。

  • setProgress():新しい値は、EDTで登録済みのに伝達されPropertyChangeListenerます。

JComponent変更するやむを得ない理由がなければ、デフォルトのバッファ戦略を使用します。

于 2012-09-12T17:20:05.580 に答える