Search:

Type: Posts; User: nasi

Search: Search took 0.09 seconds.

  1. Thread: String Vector

    by nasi
    Replies
    4
    Views
    3,812

    Re: String Vector

    Thank you very much helloworld992. sorry for that. I don't undrestand what you mean by use [code] tags.
  2. Thread: String Vector

    by nasi
    Replies
    4
    Views
    3,812

    String vector

    int ch;
    Vector<Character> result = new Vector<Character>(50, 10);
    String[] Results ;
    while ((ch=inputStream.read()) > 0) {
    result.add((char)ch);
    }
    Results = new...
  3. Thread: String Vector

    by nasi
    Replies
    4
    Views
    3,812

    String Vector

    I have a vector of characters for example [e,m,a] but I need to have a String in which all characters are in a same word such as "ema", how should I change [e,m,a] to "ema"?
Results 1 to 3 of 3