• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Accessing ArrayList from a class and displaying it in a JSP page [Struts frameWork]

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I have a class



import java.util.ArrayList;
import java.util.Iterator;
//import java.util.Collections;

/*

*/

/**
*
public class ArrayList_Test {

public void myMethod(){

ArrayList a = new ArrayList();
//String str = "test";
//a.add(str);
try{

a.add("India");
a.add("USA");
a.add("Britian");
a.add("Australia");
}catch(Exception e)
{
System.out.println(" "+e.toString());
}

System.out.println(" My Array List"+ a.toString());
Iterator I = a.iterator();
while(I.hasNext())
{
System.out.println(" NEXT "+ I.next());
}

}
public static void main(String args[]){
ArrayList_Test b = new ArrayList_Test();
b.myMethod();
}

}



Now i have a JSP page



<%@ taglib uri="struts-logic.tld" prefix="logic" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<%@ page
language="java"
contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"
%>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK href="theme/Master.css" rel="stylesheet"
type="text/css">
<TITLE>ArrayList.jsp</TITLE>
</HEAD>
<BODY>
<P>

<jsp:useBean id="array_test" class="ArrayList_Test" scope="application">
<jsp:setProperty name="array_test" property="*"/>
You entered<BR>
Name:<%/**= array_test. myMethod()**/%><BR>

</jsp:useBean>

<logic:iterate
id="array_test" type="id"
name="a" scope="application"
<LI>
The Id is: <jsp roperty
name="array_test" property="id"/>
</LI>
<logic:iterate>
</P>
</BODY>
</HTML>



now i'm getting getting this error

"Broken Link - /ArrayListJSP/struts-logic.tld - Standalone TLD files must be under the WEB-INF directory. ArrayList.jsp ArrayListJSP/WebContent line 1"

I'm using WSAD for development and trying to display the ArrayList values in the above JSP page, pls see what's wrong, i'm a novice and step by step help will be good and i also have STRUTS support enabled. It would be good if i use STRUTS framework


thanks
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to the Web App Frameworks forum.
 
Sheriff
Posts: 17644
300
Mac Android IntelliJ IDE Eclipse IDE Spring Debian Java Ubuntu Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The error message translates to: "Make sure that the file struts-logic.tld exists in the WEB-INF directory"
 
S Sand
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Junulu for replying
i' have the struts-logic.tld in WEB-INF/lib folder,
when i try to copy or move to WEB-INF WSAD[websphere stuido app dev] sayd remanme it, maybe i should cut and paste

Also my main concern is whether my approch is right, normally how do you display a ArrayList object in a class on to a JSP page
-Using struts framework :iterate tag?
-Normal jsp:UseBean?
-Write a Scriplet?

Please advice a step by step code will be great
 
Junilu Lacar
Sheriff
Posts: 17644
300
Mac Android IntelliJ IDE Eclipse IDE Spring Debian Java Ubuntu Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by chakri sandur:

Also my main concern is whether my approch is right, normally how do you display a ArrayList object in a class on to a JSP page
-Using struts framework :iterate tag?
-Normal jsp:UseBean?
-Write a Scriplet?



I just made a Blog entry about this last night. Prefer c:forEach over logic:iterate
 
Sometimes you feel like a nut. Sometimes you feel like a tiny ad.
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic