gpt4 book ai didi

java - NetBeans 无法生成 Java 文档?

转载 作者:行者123 更新时间:2023-12-01 04:59:34 26 4
gpt4 key购买 nike

我不知道为什么,但这个问题已经存在很长一段时间了。

我似乎无法使用 NetBeans 7.2 为大多数应用程序生成 Java 文档(7.1 也有同样的问题)。我根本不明白为什么会收到此错误:

java.lang.IllegalArgumentException: Error decoding percent encoded characters

我知道这个错误是什么意思(英语废话),但我不明白为什么它这么说。据我在文档中看到,不应该有任何“百分比编码字符”,除非我完全错过了这意味着什么。

这是完整的代码(只有一个文件,而且它是一个接口(interface),所以相当短):

package access;

import exception.DataException;
import java.util.List;
import table.Row;

/**
*
* @author Vipar
*/
public interface DataAccessor {
/**
* Reads data from a table.
*
* @param table The table.
*
* @param columns The columns to read, or null to read
* all the columns in the table.
*
* @param selectionRow A set of filter columns and values
* use to subset the rows, or null to
* read all the rows in the table.
*
* @param sortColumns The columns to sort, or null to read
* without sorting.
*
* @return The list of rows.
*/
List read(String table,
String[] columns,
Row selectionRow,
String[] sortColumns) throws DataException;

/**
* Inserts data into a table.
*
* @param table The table.
* @param rows The rows to insert
*/
void insert(String table, List rows) throws DataException;

/**
* Updates data in a table.
*
* @param table The table.
*
* @param selectionRow A set of filter columns and values
* used to subset the rows, or null to
* update all of the rows in the table.
*
* @param updateRow A set of update columns and values.
*/
void update(String table,
Row selectionRow,
Row updateRow) throws DataException;

/**
* Deletes data from a table.
*
* @param table The table.
*
* @param selectionRow A set of filter columns and values
* used to subset the rows, or null to
* delete all of the rows in the table.
*/
void delete(String table,
Row selectionRow) throws DataException;
}

Row 和 DataException 没有任何文档,因为目前两者都是空的。我只是想测试文档的外观。

我使用Java 1.7

最佳答案

我测试了你的类 --> javadoc 照常生成。

请检查这些设置(项目的上下文菜单 -> 属性):

  • 来源 -> 编码:UTF-8:您这里有什么?
  • 构建 -> 文档记录:您是否设置了一些Javadoc选项?如果您在此文本字段中有设置,请删除它们并重试。顺便提一句。您在文档方面的设置是什么?
  • 因为没有 issue对于此异常,请随意打开一个。

关于java - NetBeans 无法生成 Java 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13562104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com