java get the sum of all the numbers in an array

java get the sum of all the numbers in an array
/**
 * @author lautturi.com
 * Java example: how to find the sum of an array in java
 */

import java.util.*;
import java.util.stream.IntStream;

public class Lautturi {

	public static void main(String[] args) {

		int[] numbers = { 11,4,12,7,55,8,12,8,13,55,12,7 };
		int sum = IntStream.of(numbers).sum();
		System.out.println("The sum is " + sum);

	}

}
Sour‮al.www:ec‬utturi.com

output:

The sum is 204
Created Time:2017-09-11 16:49:40  Author:lautturi