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 gkittelson 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. Umamageswari

    foreach equivalent in java

    Hi all, I am doing some conversion process from C# to java. I am struck with c# foreach statement. Here I give the coding, foreach (MapFieldInfo item in Fields) { if (item == null) { continue; } if (item.Field.Equals(fieldInfo)) { exp = item.NewExpression; break; } } Here the...
  2. Umamageswari

    filestream is created each time the method is called

    Hi all, I have a method in a class which is called each time as and when needed. A filestream is created in the method. So when each time the method is called the filestream is created newly and so instead of appending whatever needed it is overwriting the file and atlast only the last called...
  3. Umamageswari

    how to create a streamwriter

    Thanks a lot for leading me.
  4. Umamageswari

    how to create a streamwriter

    Hi, I want to put a vector into a stream. For that I have created a StreamWriter and I am writing the vector. Below is the code and error message I get. class StreamWriter { void handlestream(String[] str,Vector t) { Vector temp = new Vector(); for(int...
  5. Umamageswari

    comparing JSP and ASP.NET objects

    Hi, I am preparing a tool that converts all JSP applications to ASP.NET. For this purpose I need to compare the objects of JSP and ASP.NET . I have to find the corresponding methods and properties of all objects in JSP. I found only some of the methods for each object. Can any one help me in...
  6. Umamageswari

    how to handle mutiple if's?

    Hi, In my code there comes many condition checks. So i use many if blocks which shows the code very complex. Is there any way to reduce multiple if's. Can anyone help me. Thanks in advance.
  7. Umamageswari

    JSP and ASP.NET

    Hi, I am comparing JSP and ASP.NET objects. I want to know the corresponding objects of ASP.NET for JSP objects. Can any one help me. Thanking you in advance....

Part and Inventory Search

Back
Top