CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: JAI

Page 1 of 2 1 2

Search: Search took 0.07 seconds.

  1. Replies
    17
    Views
    7,360

    Re: hi Thanks to Bayard

    I thank you very much for your replies which were

    timely and just great..
  2. Thread: java mail.

    by JAI
    Replies
    2
    Views
    642

    java mail.

    I wish to use JavaMail to E-Mail a report from a JSP page.
    The problem I am encountering is that the report is larger than will fit within a String Object.
    I believe the limit on a string object...
  3. Replies
    17
    Views
    7,360

    This is what exactly i want

    This is the zig zag output i get in microsoft outlook

    STID:
    LNI:
    Teams: Any
    Originations: Queue Mgr
    Jurisdictions: Any
    ST Process Status Selected: Ready for Review
    Summary Status Selected:...
  4. Replies
    17
    Views
    7,360

    hi norm Re: Fixed Length Strings

    hi norm i have put your method here which you sent me here it id.


    public String padRight(String s, int len) {



    final String Blanks = " ";

    if (s.length() >= len)
  5. Replies
    17
    Views
    7,360

    hi bayard i need the latest and greatest

    if you fix all the bugs please let me have the latest and greatest,can i have them by tommorrow.
  6. Replies
    17
    Views
    7,360

    Bayard -is there a bug in your method

    here i am pasting the method

    static public String rightPad(String str, int n, String delim) {
    int sz = str.length();
    n = n/delim.length();
    if(n > sz) {
    str...
  7. Replies
    17
    Views
    7,360

    Bayard -Re: Fixed Length Strings

    hi saw the class, should i pick up the rightpad and repeat method from there to give me fixed size or something else.
    please tell me what exact methods i require.
    from the class to have fixed...
  8. Replies
    17
    Views
    7,360

    hi norm Re: Fixed Length Strings

    hi norm

    this is what u sent me,

    String padRight(String s, length len) { if (s.length() >= len) return s; // leave alone if too long return s + " ".substring(len -...
  9. Replies
    17
    Views
    7,360

    Fixed Length Strings

    i want to have fixed length Strings so that when my report is viewed on screen it is aligned properly,Does java have anything to append blank characters to my string or anything else.So i have a...
  10. Thread: Selecting Bean

    by JAI
    Replies
    2
    Views
    491

    Re: Selecting Bean

    Remember entity beans will always talk to the database.
    session bean talk to entity.
    and a controller like servlet talks to the session bean
    and client talks to the servlet.if anything more you...
  11. Thread: Error handling jsp

    by JAI
    Replies
    2
    Views
    1,026

    ERROR PAGE FURTHER HELPPPP Required

    error page required for jsp.

    my question is as,
    1] i have around 10 - 15 jsp's now if any one of the jsp throws any uncaught exception
    the user should see a friendly page(i have developed a...
  12. Thread: Error handling jsp

    by JAI
    Replies
    2
    Views
    1,026

    Error handling jsp

    hi
    i got this bean on the net my purpose is to use this bean to stack my errors into my log file
    using this bean,

    package com.ora.jsp.util;

    import java.util.*;
    import javax.servlet.*;...
  13. Replies
    2
    Views
    618

    Re: session termination

    are you talking of sessions with respect to any particular server.
    than the server has settings for sessions by default its 20 minutes, in most casses.
    if you are talking about sessions in servlet...
  14. Replies
    2
    Views
    638

    Re: jsp-code for error page required

    hi ritu
    thanks for your quick reply if you can find any further i mean a ready made error handling jsp which i can put to use immediately that will be great.
    Anyway thanks.
  15. Replies
    0
    Views
    576

    Error page for jsp required

    In my project i have around 20 jsp pages.
    now i want to handle or redirect the error produced by any of the pages to a common error page or error pages.
    how should i do this?
    Can anyone provide...
  16. Replies
    2
    Views
    638

    jsp-code for error page required

    In my project i have around 20 jsp pages.
    now i want to handle or redirect the error produced by any of the pages to a common error page or error pages.
    how should i do this?
    Can anyone provide...
  17. Re: Required GUI or TUI for the code below(no applets)

    thank you ,
    but i will read the matter,
    but if you could try to put this code into one of them that will be great.
  18. The code needs a text user interface or gui graphic user interface

    The code below requires a tui or gui can anyone provide me that the gui code or tui code.the code you will provide has to be appended to the existing code below .so that from my test application...
  19. i have clientstartup.txt which i have to convert to key value to reterive values in my code from th

    <html> <body>

    from the clientstartup.txt file
    below i hard code the key say
    look at line 4 in clientstartup.txt
    i hardcode getRootDomains,
    in my program i have to
    traverse through the...
  20. Re: Design and write some code

    hi norm,
    i will write the code and put it over here by tonight.
    But see if you come up with any ideas,which will help me.
    look at my code tommorrow and help me out coz i hv to complete this by...
  21. i requirecode for storing files in hashtable or arraylist or any container

    this is the code

    import java.util.*;
    import java.net.*;
    import java.io.*;

    public class webMonitor {

    public static void main( String argv[]) {
  22. Required GUI or TUI for the code below(no applets)

    i have this code

    package httpclient;
    import java.util.*;
    import httpclient.ErrorChainException;


    /**
    * Insert the type's description here.
    * Creation date: (6/25/01 5:09:59 PM)
  23. Replies
    1
    Views
    688

    building http requests

    can anyone send me code for building httprequests from my request.
  24. Replies
    0
    Views
    435

    building httprequests?

    can anyone send me code for building httprequests
    from request ,for post get methods
  25. Thread: JDBC Question

    by JAI
    Replies
    1
    Views
    551

    JDBC Question

    PreparedStatement ps = conn.prepareStatement("insert into dw_inventory values(seq.nextval, ?, ?, ?);
    int seqVal = ps.executeUpdate(); // I WISH I could do this
    PreparedStatement ps2 =...
Results 1 to 25 of 43
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured