Como arredondar um numero

Oi pessoal … td bm … eu estou aki com uma duvida meia simpĺes … q esta me atrapalhando, eu tenho um numero … e gostaria de arredondar este numero

EX:
double int
41,968 para 42

Obrigado …

Olá

Sem usar nenhum método:

int arredondado = numeroDouble + 0.5D;

Usando a API java se obtém o mesmo resultado:

public static int round(float a)

Returns the closest int to the argument. The result is rounded to an integer by adding 1/2, taking the floor of the result, and casting the result to type int. In other words, the result is equal to the value of the expression: 

(int)Math.floor(a + 0.5f)

[]s
Luca

http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Math.html#round(float)