This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes HTML, CSS and JavaScript and the fly likes TOMCAT - Where to put GIFs for HTML Pages ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply locked New topic
Author

TOMCAT - Where to put GIFs for HTML Pages ?

John Thomas
Greenhorn

Joined: Dec 19, 2001
Posts: 8
My Tomcat is installed at c:\jak-tomcat
I copy the Servlet classes ( e.g. Serv01.class ) to
c:\jak-tomcat\webapps\ROOT\WEB-INF\classes
I access the Servlet using
http://localhost:8080/servlet/Serv01
I am able access static HTML pages (e.g. main.html) using
http://localhost:8080/main.html
My question is, in the HTML that the Servlet (Serv01) generates, if I want to include a GIF file ( pic01.gif ) as part of a IMG tag could someone please tell me how to code the path for SRC parameter ?. I am looking for
<IMG SRC ='What goes here'>
Thanks.
Matthew Phillips
Ranch Hand

Joined: Mar 09, 2001
Posts: 2676
This is more appropriate to the HTML forum. I will move it there.

------------------
Matthew Phillips
Sun Certified Programmer for Java 2 Platform


Matthew Phillips
Junilu Lacar
Bartender

Joined: Feb 26, 2001
Posts: 4118
    
    2

John,
Try putting your gifs in a directory under the one where your main.html is. Call that directory "images"
The IMG SRC would then be "/images/pic1.gif" or if that doesn't work try just "images/pic1.gif"
HTH
Junilu

Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
Frank Carver
Sheriff

Joined: Jan 07, 1999
Posts: 6913
I'm closing this thread because it has been answered in more detail in the Servlets forum.


A Convergent Visionary ~ Frank's Punchbarrel Blog ~ LinkedIn profile
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: TOMCAT - Where to put GIFs for HTML Pages ?
 
Similar Threads
TOMCAT - Path to GIF files
setting up new project
sendRedirect problem
TOMCAT - Where should GIFs be placed ?
HFSJ Help