gpt4 book ai didi

java - 如何在java中使用带有字符串数组的SubString方法

转载 作者:行者123 更新时间:2023-12-02 03:05:12 26 4
gpt4 key购买 nike

class DownloadFileAsync extends AsyncTask<String, String, String> {

@Override
protected String doInBackground(String... params) {
// TODO Auto-generated method stub

int count;
String destination = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/" ;


String[] fileName = params;
String a = fileName.toString();
String b = a.substring(20,25);
destination+=b;


try {

URL url = new URL(params[0]);
URLConnection conexion = url.openConnection();
conexion.connect();

int lengthofFile = conexion.getContentLength();
Log.d("ANDRO_ASYNC", "Length of file: " + lengthofFile);

InputStream input = new BufferedInputStream(url.openStream());
OutputStream output = new FileOutputStream(destination);

byte data[] = new byte[1024];

long total = 0;

while ((count = input.read(data)) != -1) {
total += count;
publishProgress("" + (int) ((total * 100) / lengthofFile));
output.write(data, 0, count);
}

output.flush();
output.close();
input.close();
} catch (Exception e) {
// TODO: handle exception
}
return null;
}

我的参数变量将包含“http://ledeveloper.in/ep123BCA.pdf”的url链接,我想剪切该url..我想要的“ep123BCA.pdf”的愿望字符串。

但是当我运行这段代码时,子字符串方法总是会给我一个不同的子字符串,如何解决这个问题。

请提前提供帮助并致谢。

最佳答案

使用lastIndexOf从URL中获取文件名:

String b = a.substring(a.lastIndexOf('/') + 1);

关于java - 如何在java中使用带有字符串数组的SubString方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41850364/

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