Preguntas etiquetadas con oop

96
hadoop No FileSystem para el esquema: archivo

Estoy tratando de ejecutar un simple NaiveBayesClassiferusando hadoop, obteniendo este error Exception in thread "main" java.io.IOException: No FileSystem for scheme: file at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:1375) at

92
Java: ¿Inicializar múltiples variables en for loop init?

Quiero tener dos variables de ciclo de diferentes tipos. ¿Hay alguna manera de hacer funcionar esto? @Override public T get(int index) throws IndexOutOfBoundsException { // syntax error on first 'int' for (Node<T> current = first, int currentIndex; current != null; current =...