Multiple annotations found at this line: - Syntax error, insert "Finally" to complete TryStatement - Syntax error, insert "}" to complete ClassBody
时间: 2023-11-21 19:06:23 浏览: 302
Android添加glide库报错Error: Failed to resolve: com.android.support:support-annotations:26.0.2的解决
这个问题是两个语法错误。第一个错误提示你的代码中的`try`语句缺少了`finally`块,需要将其添加到代码中。例如:
```
try {
// some code
} finally {
// cleanup code
}
```
第二个错误提示你的代码中的类定义缺少了一个`}`符号,需要将其添加到代码中。例如:
```
public class MyClass {
// class code
}
```
请检查你的代码,按照以上示例进行相应的修改。如果问题仍然存在,请提供更多的代码上下文,以方便我更好地帮助你解决问题。
阅读全文