1. 采用绝对路径:
这个就比较简单粗暴了
我的图片在本地的路径为是:E:\programing\eclipse\ServletTest\WebContent\img\hello.jpg
插入图片的时候,就直接写完整地址就好了
<img src="图片完整地址">
<%@page import="test.download"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<img src="E:\programing\eclipse\ServletTest\WebContent\img\hello.jpg">
</body>
</html>
2. 使用相对路径
使用相对路径首先要把图片导入到jsp所在的eclipse项目文件夹下。比如我的jsp文件在test文件下,就可以直接在电脑磁盘里找到你需要的插入图片,然后把图片直接拖到test文件所在的位置
然后出现一个提示框
然后直接点击ok确认就行。
之后就可以直接采用相对路径插入图片
<img src="图片名称">
<%@page import="test.download"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<img src="hello.jpg">
</body>
</html>