我的json文件包含空格,例如COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
。在浏览器中,默认情况下会添加%20。但是在android项目中使用这个文件时,我无法逃避空白区域。我的json输出如下。
1522663136Vehicle and Bike Procurement Notice 1.PDF
我正在尝试使用"heading": "Notice",
"content": "Tender Notice",
"img": "1522663136Vehicle and Bike Procurement Notice 1.PDF"
replaceALL
但它不起作用
答案 0 :(得分:1)
在Java中,字符串是不可变的,因此replaceAll返回一个新字符串而不是更改现有字符串。试试这个:
for