¿Cómo acelerar un bucle que hace la manipulación de cadenas en Java? [cerrado]

Tengo un programa que construye una cadena en un bucle, y mi programa es demasiado lento. Se tarda unos 600 milisegundos en ejecutarseOblig1Test.oppgave7. ¿Qué se podría hacer para acelerarlo?

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;
}

Prueba de Oblig1:

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();
}

Respuestas a la pregunta(4)

Su respuesta a la pregunta