我上传了一个从客户端到服务器的图像...我需要在数据库中保存服务器路径...
我成功保存了图片。我在路径中遇到了问题
我需要在数据库中保存这样的路径
https://localhost/...../filename
但是我的路径就是这样的
d:/...../filename
这是我的代码
String root = request.getServletContext().getRealPath("/");
File path = new File(root + "/images/");
if (!path.exists())
{
boolean status = path.mkdirs();
}
File uploadedFile = new File(path + "/" + vehicleId +".png");
String pathString=uploadedFile.getAbsolutePath();
item.write(uploadedFile);
请理清我的问题.. 感谢你..