I have both jdk1.2 and jdk1.1.8 on my local machine. it used to work fine. I meant if I set the path to jdk1.2\bin, I get the version1.2 compiler to compile my program. If I set the path to jdk1.1...
http://www.experts-exchange.com/Programming/Languages/Java/Q_10290335.html
Zones:
JavaDate Answered: 02/07/2000 Grade: A Views: 0
Has anyone got a nice example of reading objects into an arraylist and then looping through them at a later stage to print them out or something
Thanks
http://www.experts-exchange.com/Programming/Languages/Java/Q_20115454.html
Zones:
JavaDate Answered: 05/10/2001 Grade: A Views: 0
I have an arrayList which contains items and other arrayLists which also contain items, ie multi-layered. How can I return an arrayList which is single layered, ie contains only the items in each a...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20136761.html
Zones:
JavaDate Answered: 06/17/2001 Grade: A Views: 0
function seltitle(titleid){
alert(titleid)
var prevVal = "";
document.all.txt_mc_area.length=0;
//if ('-1' == titleid) return;
for (var i = 0; i < arraylist.length; i++) { ...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_20334226.html
Zones:
JavaScriptDate Answered: 08/08/2002 Grade: A Views: 0
Hey all,
I've got an ArrayList in my ASP.NET page. Basically, I want the user to be able to add items into an arraylist by pressing a button. However, each time they do this the page reloads and t...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20543115.html
Zones:
C#Date Answered: 03/07/2003 Grade: A Views: 0
I would like to bind an ArrayList to a DataGrid such that when elements of the ArrayList are updated, inserted, or deleted, the DataGrid reflects this. Can someone point me to some documentation o...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20584759.html
Zones:
C#Date Answered: 04/16/2003 Grade: A Views: 5
What I am trying to do is to have a function return a nested Arraylists.
My returned Arraylist returns 4 as a count but each of the arrays I read out are always the same. If I use the temp.Clear(...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20592928.html
Zones:
.NETDate Answered: 11/27/2003 Grade: A Views: 0
I tried to make a program to sort an ArrayList of objects, but cant get it to work. What am I doing wrong?
import java.util.*;
class test
{
public static void main (String [...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20616009.html
Zones:
JavaDate Answered: 05/25/2003 Grade: A Views: 0
I'm trying to receive and process an array from URL - I'm learning C#. It's got to be able to accept from URL (not working) or user can input (that part is working already). If part numbers are i...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20762457.html
Zones:
C#Date Answered: 05/11/2004 Grade: B Views: 0
[code]
public class Record1
{
private String[] accountNo;
private String name;
public Record1(String name, String[] accountNo)
{
this.name = name;
this.accountNo =...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20776841.html
Zones:
JavaDate Answered: 10/25/2003 Grade: A Views: 0