当我试图编译我的Java代码时,为什么我会得到“异常;必须被捕获或声明为被抛出”?

当我试图编译我的Java代码时,为什么我会得到“异常;必须被捕获或声明为被抛出”?

考虑:

import java.awt.*;import javax.swing.*;import java.awt.event.*;import javax.crypto.*;import javax.crypto.spec.*;import java.security.*;
import java.io.*;public class EncryptURL extends JApplet implements ActionListener {

    Container content;
    JTextField userName = new JTextField();
    JTextField firstName = new JTextField();
    JTextField lastName = new JTextField();
    JTextField email = new JTextField();
    JTextField phone = new JTextField();
    JTextField heartbeatID = new JTextField();
    JTextField regionCode = new JTextField();
    JTextField retRegionCode = new JTextField();
    JTextField encryptedTextField = new JTextField();

    JPanel finishPanel = new JPanel();


    public void init() {

        //setTitle("Book - E Project");
        setSize(800, 600);
        content = getContentPane();
        content.setBackground(Color.yellow);
        content.setLayout(new BoxLayout(content, BoxLayout.Y_AXIS));

        JButton submit = new JButton("Submit");

        content.add(new JLabel("User Name"));
        content.add(userName);

        content.add(new JLabel("First Name"));
        content.add(firstName);

        content.add(new JLabel("Last Name"));
        content.add(lastName);

        content.add(new JLabel("Email"));
        content.add(email);

        content.add(new JLabel("Phone"));
        content.add(phone);

        content.add(new JLabel("HeartBeatID"));
        content.add(heartbeatID);

        content.add(new JLabel("Region Code"));
        content.add(regionCode);

        content.add(new JLabel("RetRegionCode"));
        content.add(retRegionCode);

        content.add(submit);

        submit.addActionListener(this);
    }
}

我得到了一个未报告的例外:

java.lang.Exception; must be caught or declared to be thrownbyte[] encrypted = encrypt(concatURL);

以及:

.java:109: missing return statement

如何解决这些问题?


慕田峪9158850
浏览 1082回答 3
3回答

眼眸繁星

第一个错误异常;必须捕获或声明为抛出字节[]加密=加密(串联URL);意味着你的encrypt方法引发未由actionPerformed方法调用它。在Java异常教程.您可以从中选择几个选项来编译代码。你可以移除throws Exception从你的encrypt方法和实际手柄内部异常encrypt.可以从encrypt加上throws Exception的异常处理块actionPerformed方法。通常最好在最低级别处理异常,而不是将其传递到更高的级别。第二个错误只意味着您需要向包含第109行的任何方法中添加一个返回语句(也是encrypt,在这种情况下)。方法中有返回语句,但如果抛出异常,则可能无法到达异常,因此需要在CATCH块中返回,或者从encrypt就像我之前提到的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java