Respecto a cómo protegerte: Pentesting y Debugging, así te das cuenta si tu sistema es vulnerable a la mayoría de ataques.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúString message = "Hello world!";
String search = "Hello";
if(message.indexOf(search) != -1) {
// message contiene el texto buscado
}
if(message.toLowerCase().indexOf(search.toLowerCase()) != -1) {
// message contiene el texto buscado. Se ha omitido el case sensitive
}
Tecla Windows + R
if (!rs.isBeforeFirst()) javax.swing.JOptionPane.showMessageDialog(null, "No se han obtenido datos");
int variableGlobal = 5;
int main() {
...
}
private List<?> thirdList;
public void addLists(List<?>... lists) {
List<?> finalList = new ArrayList<>();
for(List<?) l : lists) {
Collections.addAll(finalList,l);
}
return finalList;
}
public void doSomething() {
// logic here
List<String> listOne = new ArrayList<>();
List<Double> listTwo = new ArrayList<>();
List<Integer> listThree = new ArrayList<>();
// return a fully list with the 3 lists inside
thirdList = addLists(listOne, listTwo, listThree);
}