however i have nooo idea how to add or remove values to the strings.....i need to be able to search and delete an item from one category and all corresponding values or data on this item will be removed from other strings as well (corresponding items are sorted in parallel) and wen i add an item i need to get the option to add all its corresponding values!! any help will be appreciated thanks...
Code:
public class PD
{
final static int max = 100; //Arr Size
public static Scanner keyboard;
//Arr initialisations
public static String catList[] = new String[max];
public static String prodCodeList[] = new String[max];
public static String desList[] = new String[max];
public static float costPList[] = new float[max];
public static float sellPList[] = new float[max];
public static int qtySkList[] = new int[max];
public static int qtySdList[] = new int[max];
public static int reLevList[] = new int[max];
//public static int holder[] = new int [max];
public static int count;// arr counter
public static void main(String args[])
{
keyboard = new Scanner(System.in);
int response = 0;
loadInput();//Load data from input file
do {
response = mainMenu();
if (response == 1)
{
response = sortMenu();// response 1 an 2 sorts in asc an desc order resp...already did this
if (response == 1)
{ i already wrote the code to sort all the data by anything depending on what option the user wants
}
if (response == 3)// Add a values to arrays
{ i really need help here adding values to the string arrays
}
if (response == 4)// delete values
{ need help here as well
}
if (response == 5)// Update information existing in strings
{ i think i would have to use stringbuffer in this case
}
