当前位置: 首页 > 知识库问答 >
问题:

运行jar时的SWT异常:线程"main"中的异常org.eclipse.swt.SWT异常:无效的线程访问

严宇
2023-03-14

从终端执行jar时,我得到以下信息:

 ***WARNING: Display must be created on main thread due to Cocoa restrictions.
    Exception in thread "main" org.eclipse.swt.SWTException: Invalid thread access
    at org.eclipse.swt.SWT.error(Unknown Source)
    at org.eclipse.swt.SWT.error(Unknown Source)
    at org.eclipse.swt.SWT.error(Unknown Source)
    at org.eclipse.swt.widgets.Display.error(Unknown Source)
    at org.eclipse.swt.widgets.Display.createDisplay(Unknown Source)
    at org.eclipse.swt.widgets.Display.create(Unknown Source)
    at org.eclipse.swt.graphics.Device.<init>(Unknown Source)
    at org.eclipse.swt.widgets.Display.<init>(Unknown Source)
    at org.eclipse.swt.widgets.Display.<init>(Unknown Source)
    at commonDenom.UserInterface.main(UserInterface.java:26)an error

我搜索了他的错误,发现了一些相同的执行输出错误,但没有解决我的情况。

下面详细介绍了文件的位置、清单内容、所采取的终端步骤以及所涉及的两个类文件的代码内容。

文件位置

>

  • SWT库

    /Dropbox/workspace/org.eclipse.swt/swt.jar
    

    舱单

    /Dropbox/workspace/commonDenom/bin/Manifest.txt
    

    班级

     /Dropbox/workspace/commonDenom/bin/commonDenom/
         commonDenom.class
         UserInterface.class
         UserInterface$1.class (I didn't create this)
         UserInterface$2.class (I didn't create this)
    

    普通人。jar(参见下面的创建):

    /Dropbox/workspace/commonDenom/bin/CommonDenom.jar
    

    Manifest.txt内容:

    Main-Class: commonDenom.UserInterface
    Class-Path:  /Users/skuredjian/Dropbox/workspace/org.eclipse.swt/swt.jar
    

    终端动作

    >

  • 目录更改

    cd Dropbox/workspace/comonDenom/bin/
    

    . jar创建

    jar cfm CommonDenom.jar ../Manifest.txt *
    

    舱单检查

    jar tf CommonDenom.jar
        META-INF/
        META-INF/MANIFEST.MF
        commonDenom/
        commonDenom/commonDenom.class
        commonDenom/UserInterface$1.class
        commonDenom/UserInterface$2.class
        commonDenom/UserInterface.class
        swt.jar
    

    普通人。jar执行

    java -jar CommonDenom.jar
        ***WARNING: Display must be created on main thread due to Cocoa restrictions.
        Exception in thread "main" org.eclipse.swt.SWTException: Invalid thread access
        at org.eclipse.swt.SWT.error(Unknown Source)
        at org.eclipse.swt.SWT.error(Unknown Source)
        at org.eclipse.swt.SWT.error(Unknown Source)
        at org.eclipse.swt.widgets.Display.error(Unknown Source)
        at org.eclipse.swt.widgets.Display.createDisplay(Unknown Source)
        at org.eclipse.swt.widgets.Display.create(Unknown Source)
        at org.eclipse.swt.graphics.Device.<init>(Unknown Source)
        at org.eclipse.swt.widgets.Display.<init>(Unknown Source)
        at org.eclipse.swt.widgets.Display.<init>(Unknown Source)
        at commonDenom.UserInterface.main(UserInterface.java:26)
    

    密码

    用户nterface.class内容

    package commonDenom;
    
    import java.util.Arrays;
    import java.util.Scanner;
    
    import org.eclipse.swt.SWT;
    import org.eclipse.swt.events.SelectionAdapter;
    import org.eclipse.swt.events.SelectionEvent;
    import org.eclipse.swt.widgets.Button;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Shell;
    import org.eclipse.swt.widgets.Text;
    
    
    public class UserInterface {
        Shell shell;
        Button btnNext;
        Button btnDone;
        Text input;
        Text output;
        static int count;
        static int[] finalNums;
        int[] nums = new int[1000];
    
        public static void main(String[] args){
            Display display = new Display();
            new UserInterface(display);
            display.dispose();
        }
    
        public UserInterface(Display display){
            shell = new Shell(display);
            shell.setSize(220,350);
            shell.open();
    
            input = new Text(shell, SWT.SINGLE);
            input.setBounds(10, 10, 100, 20);
    
            btnNext = new Button(shell, SWT.PUSH);
            btnNext.setBounds(10, 40, 100, 30);
            btnNext.setText("Next");
            nextPress();
    
            btnDone = new Button(shell, SWT.PUSH);
            btnDone.setBounds(10, 80, 100, 30);
            btnDone.setText("Done");
            donePress();
    
            output = new Text(shell, SWT.SINGLE);
            output.setBounds(10, 120, 200, 200);
    
            while(!shell.isDisposed()){
                if(!display.readAndDispatch()){
                    display.sleep();
                }
            }
        }
    
        public void nextPress(){
    
            btnNext.addSelectionListener(new SelectionAdapter(){
                int x = 0;
                @Override
                public void widgetSelected(SelectionEvent e) {
                        nums[x] = Integer.parseInt(input.getText());
                        System.out.println("nums[" + x + "]:" + nums[x]);
                        x++;
                        count++;
                }
            });
        }
    
        public void donePress(){
            btnDone.addSelectionListener(new SelectionAdapter(){
                @Override
                public void widgetSelected(SelectionEvent e) {
                    finalNums = new int[count]; 
                    for(int i = 0; i < count; i++){
                        finalNums[i] = nums[i];
                    }
                    System.out.println("finalNums:" + Arrays.toString(finalNums));
                    commonDenom.compare();
                    if(commonDenom.getResult() == 0){
                        output.setText(Arrays.toString(finalNums) + "\nThese numbers do not have a \ncommon multiplier");
                    }
                    else{
                        output.setText(Arrays.toString(finalNums) + "\nResult:" + String.valueOf(commonDenom.getResult()));
                    }
                }
            });
        }
        public static int[] getNums(){
            return finalNums;
        }
    }
    

    普通人。课程内容:

    package commonDenom;
    
    import java.awt.Button;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Scanner;
    import org.eclipse.swt.widgets.*;
    
    public class commonDenom{
        static int result;
        public static void main(String[] args){ 
    
        }
    
        public static String compare(){
            result = 0;
            int mult = 0;
            int x = 1;
            int[] nums = UserInterface.getNums();
    
            // find highest in set
            for(int i  = 0; i < nums.length; i ++){
                if (nums[i] > mult) mult = nums[i];
            }
    
            // finds lowest common multiple
            for(int i  = 0; i < nums.length;){
                if((mult * x) % nums[i] == 0){
                    result = mult * x;
                    i++;
                }
                else{
                    result = 0;
                    x++;
                    i = 0;
                }
            }       
        }
    
        public static int getResult(){
            return result;
        }
    }
    
  • 共有1个答案

    万阳嘉
    2023-03-14

    在Mac电脑上,必须指定-xstartonfirsthread命令行选项才能使SWT正确运行。

     类似资料:
    • 问题内容: 每当我运行此命令时,该函数就可以正常使用。当我选择洞穴时,消息会每隔2秒弹出一次,然后当它越过该部分时,就会出现错误: 我已经尝试过和,并且在该方法中使用时,出现了很多错误。当我在方法中使用时,它不接受我的输入。 当我在该方法中使用时,它不接受我的字符串输入,而直接进入另一个游戏,但是布尔值返回并且它无限地发送垃圾邮件“ Which Cave …”。 我已经阅读了错误报告,以及类似问题

    • 问题内容: 我正在开发一个访问数据库的项目,但是我遇到了一些问题。我尝试使用hibernate3.2和4.52,但是它不起作用。 例外是在这行代码中 问题答案: 您需要在类路径中检查类org.apache.log4j.Level的冲突版本并进行解决。版本1.2.12或更高版本的log4j jar中提供了TRACE级别。

    • 我最近安装了intellij IDEA 14.0,为了确保一切正常,我创建了一个简单的Hello World程序。我不明白为什么输出不正确,为什么会出现这个错误。如果有人能帮忙,那就太好了。 以下是程序: 这是错误:

    • 问题内容: 当我运行程序进行智能卡读取时,会出现此异常。我的设备未连接。请帮我。 问题答案: 这意味着它无法加载您需要的共享库。这可能是因为。 该库不在您的库路径中。 该库名称不正确,例如,Unix上LIBRARY必须为libLIBRARY.so。 您无法执行该库。 该库不适用于操作系统或JVM的位大小。例如64位JVM将不会加载32位库。 您的JRE未正确安装,并且无法加载其自己的库之一。 您正

    • 我不断收到错误消息: 线程“main”java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)在java.lang.Integer.ParseInt(Integer.java:580)在java.lang.Integer.ParseInt(Integer.java:615)在TestClass.Mai

    • 运行代码后,我收到以下错误 线程 “main” java.time.format.DateTimeParseException 中的异常:文本 '03-09-1999' 无法在 java.base/java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:2051) at java.base/java.time