Illegal character in opaque part at index

简介: Illegal character in opaque part at index

在我这里主要是因为windows用FileChannel 路径问题 ,代码如下

ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
FileChannel fileChannel = FileChannel.open(Paths.get(URI.create("file:\\D:\\soft\\doc\\filechanel.txt")) );
        int readInt = fileChannel.read(byteBuffer);

这里是不对的,不支持反斜杠

file:\\D:\\soft\\doc\\filechanel.txt 或者D:\\soft\\doc\\filechanel.txt

正确应是:

file:/D:/soft/doc/filechanel.txt


相关文章
|
SQL
Parameter ‘id‘ not found. Available parameters are [collection, list]
Parameter ‘id‘ not found. Available parameters are [collection, list]
236 0
|
6月前
|
前端开发 JavaScript
Error_ Multipart_ Boundary not foun
Error_ Multipart_ Boundary not foun
108 0
错误代码: 1364 Field ‘password‘ doesn‘t have a default value
错误代码: 1364 Field ‘password‘ doesn‘t have a default value
|
应用服务中间件 nginx Windows
1113: No mapping for the Unicode character exists in the target multi-byte code page
1113: No mapping for the Unicode character exists in the target multi-byte code page
707 0
1113: No mapping for the Unicode character exists in the target multi-byte code page
Optional int parameter ‘id‘ is present but cannot be translated into a null value due to being ……
Optional int parameter ‘id‘ is present but cannot be translated into a null value due to being ……
305 0
成功解决ValueError: Number of passed names did not match number of header fields in the file
成功解决ValueError: Number of passed names did not match number of header fields in the file
成功解决ValueError: Parameter values for parameter (n_estimators) need to be a sequence.
成功解决ValueError: Parameter values for parameter (n_estimators) need to be a sequence.
成功解决ValueError: Parameter values for parameter (n_estimators) need to be a sequence.
成功解决TypeError: Value passed to parameter 'paddings' has DataType float32 not in list of allowed valu
成功解决TypeError: Value passed to parameter 'paddings' has DataType float32 not in list of allowed valu
|
Java 数据安全/隐私保护 安全
Illegal key size or default parameters
java中使用AES对称加密后,请求报错: Caused by: java.lang.RuntimeException: java.security.InvalidKeyException: Illegal key size or default parameters at com.
5653 0