Blackberry JAVA DEVELOPMENT ENVIRONMENT - - CRYPTOGRAPHIC SMART CARD DRIVER - DEVELOPMENT GUIDE Guia de Resolução de Problemas Página 59

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 286
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 58
59
2: Using graphics and multimedia
...
break;
}
break;
...
switch(s.getStatus()) {
case LoadingStatus.LOADING_STARTED:
System.out.println("Loading in progress");
break;
case LoadingStatus.LOADING_READING:
System.out.println("Parsing in progress");
break;
case LoadingStatus.LOADING_FINISHED:
System.out.println("Loading completed");
break;
case LoadingStatus.LOADING_FAILED:
String errorName = null;
int code = s.getCode();
switch (code) {
case MediaException.INVALID_HEADER:
errorName = "Invalid header" + "\n" + s.getSource();
break;
case MediaException.REQUEST_TIMED_OUT:
errorName = "Request timed out" + "\n" +
s.getSource();
break;
case MediaException.INTERRUPTED_DOWNLOAD:
break;
case MediaException.UNSUPPORTED_TYPE:
errorName = "Unsupported type" + s.getMessage() + "\n" + s.getSource();
break;
default: {
if (code > 200) {
// A code > 200 indicates an HTTP error
errorName = "URL not found";
} else {
// default unidentified error
errorName = "Loading Failed";
}
errorName += "\n" + s.getSource() + "\n" + s.getCode()
+ ": " + s.getMessage();
break;
}
}
System.out.println(errorName);
break;
} // End switch s.getStatus().
break;
}
Code sample: Implementing a listener to download rich media content
The MediaSample2.java code sample implements a listener to download media content in the background and
display the download status to the console.
Vista de página 58
1 2 ... 54 55 56 57 58 59 60 61 62 63 64 ... 285 286

Comentários a estes Manuais

Sem comentários