Home > Java > javaTutorial > body text

How to add pictures in java web

angryTom
Release: 2020-02-10 11:16:33
Original
8107 people have browsed it

How to add pictures in java web

How to add pictures in java web

For java visual interface to insert background pictures, just background-image:url (picture path) is enough. For web projects, this is not the case.

<div class=&#39;ban&#39; style="height:100%;background-image:url(&#39;/img/qx.jpg&#39;)">
Copy after login

The effect is as follows:

How to add pictures in java web

We need to write Java code in the jsp page and let Java get the project information. Root path, introduce these image files through absolute paths. We need to write the following code at the beginning of the jsp file.

<%
String path = request.getContextPath();
String basePath=null;
basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
int port=request.getServerPort();
if(port==80){
    basePath=request.getScheme()+"://"+request.getServerName()+path;
}else{
    basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path;
}
request.setAttribute("basePath", basePath);
%>
Copy after login

These pieces of code just get the basic path, and request is one of the nine implicit objects of JSP that we often say. JSP is Servlet. request.setAttribute("basePath", basePath) means that you will get The basePath (project root path) is stored in the request scope, but we still cannot display the image here. We need to add this line of code $ in front of the image path. As follows:

<div class=&#39;ban&#39; style="height:100%;background-image:url(&#39;${basePath}/img/qx.jpg&#39;)">
Copy after login

How to add pictures in java web

(Related video tutorial sharing: java video tutorial)

The above is the detailed content of How to add pictures in java web. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template