Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pratham123

    What is a constructor in Java or OOP?

    Constructtor has same name as a calss name with no return statement. It is called by new operator
  2. pratham123

    Which webserver For Servlets?

    no there is no problem for multiple web server on single machine but u have to select diffrent port for every web server and for making servlet there is no need to web server but u need servlet container like apache tomcat . any problem then conatct me regards Alpesh Patel
  3. pratham123

    Unicode character Comparision Problem

    Hello friends i got a problem for unicode character comparision problem.actually i want to check particular character is exist in the string or not. here i m sendning a code just check and send me suggestion how to check it set of unicode character. static String chUnicode[] = {...
  4. pratham123

    Using struts tag

    send JSP file source code so that i can check your code
  5. pratham123

    JSP synchronization with multiple action class

    JSP is indirectly converted in Servlet and then executed. in your case ,your JSP is accessed by multiple action classes ,so of course it has multiple representations. so you should make jsp as a single threaded . so use threadsafe tag in JSP
  6. pratham123

    How to check for class at runtime

    import java.io.*; public class RTTI { public static void main(String args[]) { printRTTI(new Integer(7)); printRTTI(new DataOutputStream(System.out)); } public static void printRTTI(Object o) { if (o == null) { System.out.println("This object is null")...
  7. pratham123

    Problem Algorithem for MPEG to Wav Conversion

    Myself Alpesh Patel , Newbie of Java Media Framework I want to know that , is there any algorithem which is converted MPEG to WAV file An need a format of MPEG and WAV file. Help me
  8. pratham123

    Struts Framework Problem?

    We know that , in Struts FrameWork , we are inherit ActionForm class. it is a abtract class and it has many method to implement but we are not implementing single method . so why it is a abstract class and not interface.? plz send me a reply as soon as possible
  9. pratham123

    Struts Framework Problem?

    We know in Struts FrameWork , we are inherit ActionForm class. it is a abtract class and it has many method to implement but we would not implement single method . so why it is a abstract class and not interface.? plz send me a reply as soon as possible
  10. pratham123

    How to Check Where given element is a file or Directory ?

    How change the File Bit to Directory bit can anybosy have a idea?
  11. pratham123

    How to Check Where given element is a file or Directory ?

    i got a header by using MS C but how to set that i dont know ? it make it File View to directory View
  12. pratham123

    i want to develop a String Replace Algorithm

    i have a problem in allocation of memory in the by using a realloc function how to use it just send me a code .. for example code : char *ReplaceString(char* pszSource, char* pszSearch, char* pszRepl) { int nLenSource = 0; int nLenSearch = 0; int nLenRepl = 0; char* pszReturn = NULL...

Part and Inventory Search

Back
Top