"); writer.println("Key"); writer.println(" | "); writer.println(""); writer.println("Data"); writer.println(" | "); writer.println("
---|---|
"); writer.println(key); writer.println(" | "); writer.println("");
v = (Vector)ht.get(key);
for(int i = 0; i < v.size(); i++)
{
obj = v.elementAt(i);
if(obj instanceof FileUpload)
{
fileUpload = (FileUpload)obj;
sValue = fileUpload.getRemoteFilePath();
writer.println("remote file path: [" + (((sValue = fileUpload.getRemoteFilePath()) == null) ? "" : sValue) + "] "); writer.println("local file path: [" + (((sValue = fileUpload.getLocalFilePath()) == null) ? "" : sValue) + "] "); writer.println("content type: [" + (((sValue = fileUpload.getContentType()) == null) ? "" : sValue) + "] "); } else { writer.println((String)obj + " "); } } writer.println(" | ");
writer.println("