7

我正在尝试从具有try-catch 块的函数返回一个布尔值

但问题是我不能返回任何值。

我知道 try-catch 块内的变量不能在它之外访问,但我仍然想要。

public boolean checkStatus(){
        try{


        InputStream fstream = MyRegDb.class.getClassLoader().getResourceAsStream("textfile.txt");
        // Use DataInputStream to read binary NOT text.
        BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
        String strLine;

        //Read File Line By Line
        strLine = br.readLine();
        // Print the content on the console
        System.out.println (strLine);

        ind.close();
        if(strLine.equals("1")){

            return false;   
        }else{
            return true;    
        }

    }catch(Exception e){}
}   

在我的项目中,这对我来说是一个非常严重的问题。我用谷歌搜索,并尝试了自己,但没有解决。

我希望现在我能找到一些解决方案。我知道它有错误说缺少返回语句 ,但我希望程序完全像这样工作。

现在我对此很严格的原因

在我的 jar 文件中,我必须访问文本文件以查找值 1 或 0,如果“1”则激活,否则停用。

这就是我使用布尔值的原因。

4

5 回答 5

11

只需在 try/catch 之外声明布尔值,并在 try 块中设置值

public boolean myMethod() {
    boolean success = false;
    try {
        doSomethingThatMightThrowAnException();
        success = true;
    }
    catch ( Exception e ) {
        e.printStackTrace();
    }
    return success;
}
于 2013-02-22T18:04:39.413 回答
7

在您的方法中,如果Exception抛出 an ,则没有 return 语句。将return语句放置在异常处理程序中、finally块中或异常处理程序之后。

于 2013-02-22T18:05:11.160 回答
3

错误是在引发异常的情况下您没有返回任何内容。

尝试以下操作:

public boolean checkStatus(){
   boolean result = true;  // default value.
   try{

        InputStream fstream = MyRegDb.class.getClassLoader().getResourceAsStream("textfile.txt");
        // Use DataInputStream to read binary NOT text.
        BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
        String strLine;

        //Read File Line By Line
        strLine = br.readLine();
        // Print the content on the console
        System.out.println (strLine);

        ind.close();
        if(strLine.equals("1")){

            result = false;   
        }else{
            result = true;    
        }

    }catch(Exception e){}
    return result;
}  
于 2013-02-22T18:07:29.860 回答
0

在 try/catch 块之前声明 String strLine br,然后在 try/catch 块
之后编写 if 语句,例如

    String strLine;

    try{
        //......
    }catch(Exception e){
        //.....
    }

    if(strLine.equals("1"))
       return false;   

    return true;    

摆脱 else 块。

于 2013-02-22T18:08:57.440 回答
0
import java.io.*;
public class GameHelper 
{
    public String getUserInput(String prompt) {
        String inputLine = null;
        System.out.print(prompt + “ “);
        try {
            BufferedReader is = new BufferedReader(
            new InputStreamReader(System.in));
            inputLine = is.readLine();
            if (inputLine.length() == 0 ) return null;
        } 
        catch (IOException e) {
            System.out.println(“IOException: “ + e);
        }
        return inputLine;
    }
}

确保import java.io.*在编写程序之前进行编写。try现在您甚至可以在and之外返回该函数catch

于 2018-09-27T19:08:10.417 回答