完美解决 java.lang.RuntimeException: java.lang.IllegalArgumentException: File XXXX contains a path separ

完美解决 java.lang.RuntimeException: java.lang.IllegalArgumentException: File XXXX contains a path separator

目录

所遇问题

java.lang.RuntimeException: java.lang.IllegalArgumentException: File /data/data/XXXX/files/rp.json contains a path separator
代码实例为:

            InputStream inputStream = context.openFileInput(rolePath + File.separatorChar + rolePermissionFileName);
            if ( inputStream != null ) {
                InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
                BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
                String receiveString = "";
                StringBuilder stringBuilder = new StringBuilder();
                while ( (receiveString = bufferedReader.readLine()) != null ) {
                    stringBuilder.append(receiveString);
                }
                inputStream.close();
                String ret = stringBuilder.toString();
            }
解决思路

查看FileOutputStream文档:

public abstract FileOutputStream openFileOutput (String name, int mode)
Since:  API Level 1

Open a private file associated with this Context's application package for writing. Creates the file if it doesn't already exist.

Parameters
    name	The name of the file to open; can not contain path separators.
    mode	Operating mode. Use 0 or MODE_PRIVATE for the default operation, MODE_APPEND to append to an existing file, MODE_WORLD_READABLE andMODE_WORLD_WRITEABLE to control permissions.

Returns

    FileOutputStream Resulting output stream.


发现需如下操作:



File file = new File("/data/data/XXXX/files/rp.json");
fis = new FileInputStream(file);
解决方法

完整解决实例:

String path = "/data/data/XXXX/files";
String name = "rp.json";

File filePath = new File(path);
if(!filePath.exists()) {
    filePath.mkdirs();
}

String fileName = path + File.separatorChar + name;

File file = new File(fileName);
if (!file.exists()){
    file.createNewFile();
}

InputStream inputStream = new FileInputStream(file);
if ( inputStream != null ) {
    InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
    BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
    String receiveString = "";
    StringBuilder stringBuilder = new StringBuilder();
    while ( (receiveString = bufferedReader.readLine()) != null ) {
        stringBuilder.append(receiveString);
    }
    inputStream.close();
    ret = stringBuilder.toString();
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

五一编程

程序之路有我与你同行

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值