Java中常用的方法有以下几种:
1. String类的方法:常用的字符串操作方法,如substring()、indexOf()、toUpperCase()、toLowerCase()等。
2. Math类的方法:常用的数学运算方法,如sqrt()、pow()、random()等。
3. ArrayList类的方法:常用的动态数组操作方法,如add()、remove()、get()、size()等。
4. Array类的方法:常用的静态数组操作方法,如sort()、binarySearch()、copyOf()等。
5. Scanner类的方法:常用的输入操作方法,如nextInt()、nextDouble()、nextLine()等。
6. System类的方法:常用的系统操作方法,如out.println()、currentTimeMillis()、exit()等。
7. File类的方法:常用的文件操作方法,如exists()、createNewFile()、delete()等。
8. Object类的方法:所有类的父类,常用的方法有equals()、toString()、hashCode()等。
以上只是一些常见的方法,Java中还有很多其他类和方法可供使用。