Answers for "arrays to list"

13

java array to list

Integer[] spam = new Integer[] { 1, 2, 3 };
List<Integer> list = Arrays.asList(spam);
Posted by: Guest on February-26-2020
3

Create ArrayList from array java

new ArrayList<>(Arrays.asList(array))
Posted by: Guest on November-27-2019
3

convert array to list java

/*
Get the Array to be converted.
Create the List by passing the Array as parameter in the constructor of the List with the help of Arrays. asList() method.
Return the formed List.
*/

String[] namedata = { "ram", "shyam", "balram" }; 

List<String> list = Arrays.asList(namedata);
Posted by: Guest on May-07-2020
0

java array to list

int[] spam = new int[] { 1, 2, 3 };
Arrays.stream(spam)
      .boxed()
      .collect(Collectors.toList());
Posted by: Guest on February-26-2020
0

convert array to array

new_images = array();
// format image before upload
for ($i = 0; $i < count($images['name']); $i++) {
  $new_images[] = array(
    'name' 		=> $images['name'][$i],
    'type' 		=> $images['type'][$i],
    'tmp_name' 	=> $images['tmp_name'][$i],
    'error' 	=> $images['error'][$i],
    'size' 		=> $images['size'][$i],
  );
}

<pre>Array
(
    [name] => Array  (
            [0] => Screen Shot 2020-10-21 at 10.44.30 AM.png
            [1] => Screen Shot 2020-10-21 at 9.56.12 AM.png )
    [type] => Array (
            [0] => image/png
            [1] => image/png )
    [tmp_name] => Array   (
            [0] => /Applications/MAMP/tmp/php/phpnlVcZU
            [1] => /Applications/MAMP/tmp/php/php1qaHkj  )
    [error] => Array (
            [0] => 0
            [1] => 0 )
    [size] => Array  (
            [0] => 61923
            [1] => 62194)

)
</pre>

// to 
<pre>Array
(
    [0] => Array (
            [name] => Screen Shot 2020-10-21 at 10.44.30 AM.png
            [type] => image/png
            [tmp_name] => /Applications/MAMP/tmp/php/phpJz6xqI
            [error] => 0
            [size] => 61923 )
    [1] => Array  (
            [name] => Screen Shot 2020-10-21 at 9.56.12 AM.png
            [type] => image/png
            [tmp_name] => /Applications/MAMP/tmp/php/phpHSBXaI
            [error] => 0
            [size] => 62194  )
)
</pre>
Posted by: Guest on October-21-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language