Julie Jacob

Greenhorn
+ Follow
since Aug 17, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Julie Jacob

hi all

how to do a navigation technique in struts
give examples code

here i needed like ths way
first next previous last
these 4s are button or links


when i click on the link, can do the action
how
18 years ago
this for a customServlet

Public synchronized void init(ServletConfig config){
MyROOT = config.getInitParameter( �MyROOT�);
Try{
super.init(config);
}catch (ServletException se) {
System.out.println(�Could not access super class init�);
}

If(MyROOT == null){
MyROOT =�The default App root directory where the configuration file is stored�
}

Properties props = new Properties(); // empty list

// Can be used if needed later //
//URL fileUrl = new URL("http://" + getCodeBase().getHost() + "/test/config.txt");//

URL fileUrl = new URL(MyROOT +�/config.txt");

InputStream in = fileUrl.openStream();

props.load(in);

}

myActionServlet extends CustomServlet

String desease = new String(props.getProperty(desease));

Here i needed initialise a values of Listbox
to config.txt.

in my web.xml file
<servlet-name>MyServletName</servlet-name>
<servlet-class>com.mycompany.MyServlet</servlet-class>

<init-param>
<param-name> param1 </param-name>
<param-value> value1 </param-value>
</init-param>


How this posible?
18 years ago
how to pass Servletcontext object to actionservlet in struts
18 years ago
Initialization Parameters for a Servlet and populating data into the listbox in jsp How
18 years ago
I have an image to upload . I set the size of it. But any client can uploading any type and any size photo. my request is that, when a client send an image, then automatically compressing or resizing the sets the image size.

i sets the image size is 190X200. this is fixed size.
but the client can uploading any size of file. that receiving after, without any defect of the picture, and adjusting to the 190X200 size.

anyone to know this please give me the code
18 years ago
Hai all

I needed to apply tiles in struts modules How?
18 years ago
Hai all

I needed to develop a programming in struts payment gateway system. How?
18 years ago
Hai all
I needed to payment Gateway programming technique in Struts.

Anyone to know this please help me
18 years ago
I am using Eclipse IDE and have a struts application up and running using tiles.
How i can use struts module for a related application using with tiles.

please help me
18 years ago
i have created one drop down multi select list in struts jsp.

I want to store selected elements my postgress database
19 years ago
In my programme have a multi-selection list box. when i click on the multi-selection listbox in multiple rows, how to store values in database?

How to store the selected values from the multi-selection listbox to postgress?
19 years ago
I am using struts JSP page in list box. Thru in my programme needed to select multiple dataitem from the listbox and stored it to the database. How can i do it?

Thanks
19 years ago
I have a List box. I wanted to Multiple selection from the listbox and added to the seleected items stored in to the database How?

Thanks
19 years ago
Hai All

I have an image to upload . I set the size of it. But any client can uploading any type and any size photo. my request is that, when a client send an image, then automatically compressing or resizing the sets the image size.

i sets the image size is 190X200. this is fixed size.
but the client can uploading any size of file. that receiving after, without any defect of the picture, and adjusting to the 190X200 size.

anyone to know this please give me the code

thanks
19 years ago
How I store an image to database and also retrieve an image from database to struts based jsp page .
anyone to help me

thanks
19 years ago