如何从指定路径获取附件
我只是从数据库中获取路径。它假设在这条道路上保存了一个保护者。我怎样才能得到这个使用java的附件?如何从指定路径获取附件
回答:
这适用于想从本地读取附件, 如果要从远程系统读取文件或其他东西,可以采用不同的方式。
String filePAthDB ="E:/Eclipse-Leo/RD_JMS/src/test/textfile.jpg"; File f = new File(filePAthDB);
if(f.exists())
{
//process file whatever you want
System.out.println("Attachment available......");
}
else
System.out.println("not Attachment available......");
以上是 如何从指定路径获取附件 的全部内容, 来源链接: utcz.com/qa/263995.html