add tools to get server list
This commit is contained in:
parent
bc6b94b6a6
commit
1ec120c373
@ -72,13 +72,14 @@ public class ClientManagementUDP implements Runnable {
|
|||||||
*/
|
*/
|
||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
|
System.out.println("Enter all servers: type \"stop\" when finished");
|
||||||
|
Scanner scanner = new Scanner(System.in);
|
||||||
String[] list = listDirectory();
|
String[] list = listDirectory();
|
||||||
System.out.println("Files present on the server:");
|
System.out.println("Files present on the server:");
|
||||||
for(String listItem: list) {
|
for(String listItem: list) {
|
||||||
System.out.println(listItem);
|
System.out.println(listItem);
|
||||||
}
|
}
|
||||||
System.out.println("Name of the file to download:");
|
System.out.println("Name of the file to download:");
|
||||||
Scanner scanner = new Scanner(System.in);
|
|
||||||
String f = scanner.nextLine();
|
String f = scanner.nextLine();
|
||||||
download(f);
|
download(f);
|
||||||
System.out.println("File sucessfully downloaded");
|
System.out.println("File sucessfully downloaded");
|
||||||
|
29
src/tools/HostList.java
Normal file
29
src/tools/HostList.java
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package tools;
|
||||||
|
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
public class HostList{
|
||||||
|
/** Helper to get the server list from the user
|
||||||
|
* @author Louis Royer
|
||||||
|
* @author Flavien Haas
|
||||||
|
* @author JS Auge
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
public String[] getServList(){
|
||||||
|
String[] serverList = new String[20];
|
||||||
|
Scanner scanner = new Scanner(System.in);
|
||||||
|
String servName = "";
|
||||||
|
int i = 0;
|
||||||
|
do {
|
||||||
|
System.out.println("Name of the next server:");
|
||||||
|
servName = scanner.nextLine();
|
||||||
|
if (servName != "stop"){
|
||||||
|
serverList[i] = servName;
|
||||||
|
}
|
||||||
|
++i;
|
||||||
|
} while (servName != "stop");
|
||||||
|
return serverList;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user