我将图像从客户端上传到服务器...我需要将服务器路径保存在数据库中...
我成功保存了图像..我的路径有问题
我需要在数据库中保存这样的路径
https://localhost/...../文件名
但在我的道路上是这样走的
d:/...../文件名
这是我的代码
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);
请解决我的问题。。谢谢。。