很多搜索但仍无法通过此问题。 我有一个以下div,其中使用图形api加载来自facebook服务器的照片。我想要一种方法将div的内容转换为图像,以便我可以将其保存到服务器并上传到Facebook。请任何人帮助我!!!
public boolean isOnline() {
Runtime runtime = Runtime.getRuntime();
try {
Process ipProcess = runtime.exec("/system/bin/ping -c 1 8.8.8.8");
int exitValue = ipProcess.waitFor();
return (exitValue == 0);
} catch (Exception e) {
e.printStackTrace();
}
return false;
}