Search:

Type: Posts; User: brandon66

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    1,871

    Re: android screen scraping error

    This code works for android 2.3.3 but not the new version of android any help?
  2. Replies
    4
    Views
    1,871

    Re: android screen scraping error

    This is the logcat i believe its not getting anything from the webpage not sure how to fix that. Caused by: java.lang.StringIndexOutOfBoundsException: length=0; regionStart=14; regionLength=-15

    ...
  3. Replies
    4
    Views
    1,871

    android screen scraping error

    Hey guys having some troubles here with screen scraping just wondering whats causing it not to pick up the string from the webpage it throws an error. any help would be appreciated thanks:)

    ...
  4. Replies
    7
    Views
    3,110

    Re: Help with one-dimensional array

    Thanks alot guys for the help :) here is the finished code


    import java.util.Arrays;

    public class ArrayTestApp
    {
    public static void main(String[] args)
    {
    double[] testArray =...
  5. Replies
    7
    Views
    3,110

    Re: Help with one-dimensional array

    for step 4 would i create a for loop like this:?


    for(int i = 9; i < testArray.length; i++)
    {
    System.out.println(testArray[i]);
    }
  6. Replies
    7
    Views
    3,110

    Re: Help with one-dimensional array

    so the enhanced for loop would look like this: ?


    import java.util.Arrays;

    public class ArrayTestApp
    {
    public static void main(String[] args)
    {
    double[] testArray = new double...
  7. Replies
    7
    Views
    3,110

    Help with one-dimensional array

    Hey everyone, new to java here some troubles getting this down mostly step 4 i believe i have everything else correct not sure though.

    1. Create a one-dimensional array of 99 double values. Then,...
Results 1 to 7 of 7