I have a program that builds a string in a loop, and my program is too slow. It takes now about 600 milliseconds to run Oblig1Test.oppgave7. What could be done to speed it up?
Oblig1.toString:
public static String toString(int[] a, char v, char h, String mellomrom)
{
    String s ="";
    s += v;
    if(a.length != 0)
    {
        for(int i = 0; i < a.length-1; i++)
        {
                s += a[i] + mellomrom; 
        }
        s += a[a.length-1];
    }
    s += h;
    return s;
}
Oblig1Test:
public static int oppgave7()
{
   int[] b = new int[20000];
   long tid = System.currentTimeMillis();
   Oblig1.toString(b,' ',' '," ");
   tid = System.currentTimeMillis() - tid;
  if (tid > 40)
  {
    System.out.println("Oppgave 7: Metoden "
      + "er for ineffektiv. Må forbedres!");
  }
}
public static void main(String[] args) throws IOException
{
   oppgave7();
}


