Search:

Type: Posts; User: god1gracious

Search: Search took 0.09 seconds.

  1. Replies
    1
    Views
    2,062

    attributes and properties in jsp page

    Respected PROGRAMMERS,

    If on a jsp page, there is a variable named "someName" and a getter method:- getSomeName() gets it.
    Then it should be the property. Or can it be some...
  2. Tomcat can't find class that is placed directly under classes folder

    Respected PROGRAMMERS, There was a jsp file

    <%@ page import="foo.*" %>
    <html>
    <body>
    The page...
  3. Replies
    2
    Views
    1,556

    Re: OutputStream in java

    Please forgive me for my negligence respected SIR.

    PrintWriter out = response.getWriter is from a servlet code.


    Since System.out is usually used in programs, so i...
  4. Replies
    2
    Views
    1,556

    OutputStream in java

    Respected PROGRAMMERS,
    Please explain out variable in System.out


    out is sometimes referred to be object of type OutputStream
    ...
  5. Replies
    3
    Views
    1,493

    package for Beginners

    Respected PROGRAMMERS

    When a classfile that belongs to a package, then

    package PackageName;


    is included in the source code of that file. So...
  6. Replies
    3
    Views
    2,026

    Re: Packages and Servlets

    Thank You Sir, Servlet class files are kept under web folder. And Servlet mappings are used to facilitate the container to find these classes files.When Container has found them, why can't jvm find...
  7. Replies
    3
    Views
    2,026

    Packages and Servlets

    Respected PROGRAMMERS,
    In Apache tomcat, there was a project created that included Servlets to service the incoming requests. And java class files were kept under



    ...
  8. Replies
    3
    Views
    1,042

    Re: String objects

    Thank You SIR for the reply.
    In my programs they turned out to be same,
    that's why I asked this question.
    Have a very lovely day
  9. Replies
    3
    Views
    1,042

    String objects

    Respected PROGRAMMERS,
    Kindly tell me
    String s= "God";
    String k= "God";
    then will both...
  10. Replies
    1
    Views
    1,292

    Synchronization on object

    Respected PROGRAMMERS,
    when a synchronized block is used for synchronization on an object instance, then threads compete to get into object's implicit monitor. And once,...
Results 1 to 10 of 11