Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个下载文件表单 URL 的 java 方法。例子,
private void(String info){ }
我需要使用线程调用此方法。如何使用线程访问方法。?
谢谢
您可以创建该函数static并在线程内调用它:
static
ClassName.downloadFile("info...");
顺便说一句:你忘记了你的函数名。
您还可以创建一个对象:
ClassName yourClass = new ClassName();
并在您的线程中(yourClass 必须在线程中是最终的。):
yourClass.downloadFile("info...");