ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahh_5.4.0.1/htmtrex.htm

229 lines
8.4 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="security" content="public" />
<meta name="Robots" content="index,follow" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta name="DC.Type" content="reference" />
<meta name="DC.Title" content="Example: Using HTMLTree classes" />
<meta name="abstract" content="" />
<meta name="description" content="" />
<meta name="copyright" content="(C) Copyright IBM Corporation 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="htmtrex" />
<meta name="DC.Language" content="en-us" />
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
<link rel="stylesheet" type="text/css" href="./ic.css" />
<title>Example: Using HTMLTree classes</title>
</head>
<body id="htmtrex"><a name="htmtrex"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">Example: Using HTMLTree classes</h1>
<div><p></p>
<div class="section"><div class="note"><span class="notetitle">Note:</span> Read the <a href="codedisclaimer.htm#codedisclaimer">Code
example disclaimer</a> for important legal information.</div>
<pre>///////////////////////////////////////////////////////////////////////////////
//
// This source is an example of using the IBM Toolbox for Java HTML
// package classes, which allow you to easily build HTML and File Trees.
//
///////////////////////////////////////////////////////////////////////////////
import java.io.File;
import java.io.PrintWriter;
import java.io.IOException;
import java.util.Vector;
import java.util.Properties;
import javax.servlet.*;
import javax.servlet.http.*;
import com.ibm.as400.access.AS400;
import com.ibm.as400.access.Trace;
import com.ibm.as400.access.IFSJavaFile;
import com.ibm.as400.util.html.HTMLMeta;
import com.ibm.as400.util.html.HTMLTree;
import com.ibm.as400.util.html.HTMLTreeElement;
import com.ibm.as400.util.html.URLParser;
import com.ibm.as400.util.html.DirFilter;
import com.ibm.as400.util.html.FileTreeElement;
import com.ibm.as400.util.servlet.ServletHyperlink;
/**
* An example of using the HTMLTree and FileTreeElement classes in a servlet.
**/
public class TreeNav extends HttpServlet
{
public void init(ServletConfig config)
throws ServletException
{
super.init(config);
// The Toolbox uses a set of default icons to represents expanded,
// collapsed, and documents within the HTMLTree. To enhance those icons,
// the Toolbox ships three gifs (expanded.gif, collapsed.gif, bullet.gif)
// in the jt400Servlet.jar file. Browsers do not have the ability to
// find gifs in a jar or zip file, so those images need to be extracted
// from the jar file and placed in the appropriate webserver directory
// (by default it is the /html directory). Then uncomment the following
// lines of code and specify the correct location in the these set
// methods. The location can be absolute or relative.
HTMLTreeElement.setExpandedGif("/images/expanded.gif");
HTMLTreeElement.setCollapsedGif("/images/collapsed.gif");
HTMLTreeElement.setDocGif("/images/bullet.gif");
}
/**
* Process the GET request.
* @param req The request.
* @param res The response.
**/
public void doGet (HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException
{
HttpSession session = req.getSession(true);
HTMLTree fileTree = (HTMLTree)session.getValue("filetree");
// If this session does not already have a file tree, then
// create the initial tree.
if (fileTree == null)
fileTree = createTree(req, resp, req.getRequestURI());
// Set the Http servlet request on the HTMLTree.
fileTree.setHttpServletRequest(req);
resp.setContentType("text/html");
PrintWriter out = resp.getWriter();
out.println("&lt;html&gt;\n");
out.println(new HTMLMeta("Expires", "Mon, 03 Jan 1990 13:00:00 GMT"));
out.println("&lt;body&gt;\n");
// Get the tag for the HTMLTree.
out.println(fileTree.getTag());
out.println("&lt;/body&gt;\n");
out.println("&lt;/html&gt;\n");
out.close();
// Set the session tree value, so when entering this servlet for
// the second time, the FileTree object will be reused.
session.putValue("filetree", fileTree);
}
/**
* Process the POST request.
* @param req The request.
* @param res The response.
**/
public void doPost (HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException
{
res.setContentType("text/html");
ServletOutputStream out = res.getOutputStream();
}
/**
* This method will create the initial HTMLTree.
**/
private HTMLTree createTree(HttpServletRequest req, HttpServletResponse resp, String uri)
{
// Create an HTMLTree object.
HTMLTree tree = new HTMLTree(req);
try
{
// Create a URLParser object.
URLParser urlParser = new URLParser(uri);
AS400 sys = new AS400(CPUStatus.systemName_, "javactl", "jteam1");
// Create a File object and set the root IFS directory.
IFSJavaFile root = new IFSJavaFile(sys, "/QIBM");
// Create a Filter and list all of the directories.
DirFilter filter = new DirFilter();
//File[] dirList = root.listFiles(filter);
// Get the list of files that satisfy the directory filter.
String[] list = root.list(filter);
File[] dirList = new File[list.length];
// We don't want to require webservers to use JDK1.2 because
// most webserver JVM's are slower to upgrade to the latest JDK level.
// The most efficient way to create these file objects is to use
// the listFiles(filter) method in JDK1.2 which would be done
// like the following, instead of using the list(filter) method
// and then converting the returned string arrary into the appropriate
// File array.
// File[] dirList = root.listFiles(filter);
for (int j=0; j&lt;dirList.length; ++j)
{
if (root instanceof IFSJavaFile)
dirList[j] = new IFSJavaFile((IFSJavaFile)root, list[j]);
else
dirList[j] = new File(list[j]);
}
for (int i=0; i&lt;dirList.length; i++)
{
// Create a FileTreeElement for each directory in the list.
FileTreeElement node = new FileTreeElement(dirList[i]);
// Create a ServletHyperlink for the expand/collapse icons.
ServletHyperlink sl = new ServletHyperlink(urlParser.getURI());
//sl.setHttpServletResponse(resp);
node.setIconUrl(sl);
// Create a ServletHyperlink to the TreeList servlet, which will
// display the contents of thie FileTreeElement (directory).
ServletHyperlink tl = new ServletHyperlink("/servlet/TreeList");
tl.setTarget("list");
// If the ServletHyperlink doesn't have a name, then set it to the
// name of the directory.
if (tl.getText() == null)
tl.setText(dirList[i].getName());
// Set the TextUrl for the FileTreeElement.
node.setTextUrl(tl);
// Add the FileTreeElement to the HTMLTree.
tree.addElement(node);
}
}
catch (Exception e)
{
e.printStackTrace();
}
return tree;
}
public void destroy(ServletConfig config)
{
// do nothing
}
public String getServletInfo()
{
return "FileTree Navigation";
}
}</pre>
</div>
</div>
</body>
</html>