- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我正在制作一个 java 应用程序,它可以从特定的 Spotify 用户获取所有公共(public)播放列表,一切都很好,并且可以正常工作,直到我在基于 linux 的机器(raspbian java 版本 1.8)上运行我的项目时Windows 我得到了预期的输出但是当在 Linux 上运行时我得到了
来自 linux 的错误日志
java.io.IOException
at com.wrapper.spotify.SpotifyHttpManager.execute(SpotifyHttpManager.java:164)
at com.wrapper.spotify.SpotifyHttpManager.post(SpotifyHttpManager.java:81)
at com.wrapper.spotify.methods.AbstractRequest.postJson(AbstractRequest.java:38)
at com.wrapper.spotify.methods.authentication.ClientCredentialsGrantRequest.getAsync(ClientCredentialsGrantRequest.java:30)
at com.simon.spotify.Spotify.GetPublicPlayLists(Spotify.java:47)
at com.simon.Main$10.start(Main.java:375)
at com.simon.Main.getSpotifyPlayLists(Main.java:379)
at com.simon.keyevent.selectionHandler(keyevent.java:77)
at com.simon.keyevent.keyPressed(keyevent.java:52)
at java.awt.AWTEventMulticaster.keyPressed(AWTEventMulticaster.java:250)
at java.awt.Component.processKeyEvent(Component.java:6493)
at javax.swing.JComponent.processKeyEvent(JComponent.java:2832)
at java.awt.Component.processEvent(Component.java:6312)
at java.awt.Container.processEvent(Container.java:2236)
at java.awt.Component.dispatchEventImpl(Component.java:4891)
at java.awt.Container.dispatchEventImpl(Container.java:2294)
at java.awt.Component.dispatchEvent(Component.java:4713)
at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1954)
at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboardFocusManager.java:806)
at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeyboardFocusManager.java:1074)
at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeyboardFocusManager.java:945)
at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFocusManager.java:771)
at java.awt.Component.dispatchEventImpl(Component.java:4762)
at java.awt.Container.dispatchEventImpl(Container.java:2294)
at java.awt.Window.dispatchEventImpl(Window.java:2750)
at java.awt.Component.dispatchEvent(Component.java:4713)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
at java.awt.EventQueue$4.run(EventQueue.java:731)
at java.awt.EventQueue$4.run(EventQueue.java:729)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
这是包含 getSpotifyPlayLists 的类
public class Spotify {
public static String clientId = ""; // inser client public key
public static String clientSecret = ""; // insert client sercet key
public static String userid = "";// inser user name
public Spotify(String clientId,String clientSecret,String userid) {
this.clientId = clientId;
this.clientSecret = clientSecret;
this.userid = userid;
}
public static Api api;
public static void GetPublicPlayLists() {
System.out.println
(new Exception().getStackTrace()[0].getMethodName());
ArrayList<String> data = new ArrayList<>();
api = Api.builder()
.clientId(clientId)
.clientSecret(clientSecret)
.build();
/* Create a request object. */
final ClientCredentialsGrantRequest request = api.clientCredentialsGrant().build();
/* Use the request object to make the request, either asynchronously (getAsync) or synchronously (get) */
final SettableFuture<ClientCredentials> responseFuture = request.getAsync();
/* Add callbacks to handle success and failure */
Futures.addCallback(responseFuture, new FutureCallback<ClientCredentials>() {
@Override
public void onSuccess(ClientCredentials clientCredentials) {
/* The tokens were retrieved successfully! */
System.out.println("Successfully retrieved an access token! " + clientCredentials.getAccessToken());
System.out.println("The access token expires in " + clientCredentials.getExpiresIn() + " seconds");
/* Set access token on the Api object so that it's used going forward */
api.setAccessToken(clientCredentials.getAccessToken());
/* Please note that this flow does not return a refresh token.
* That's only for the Authorization code flow */
final UserPlaylistsRequest request = api.getPlaylistsForUser(userid).build();
try {
final Page<SimplePlaylist> playlistsPage = request.get();
for (SimplePlaylist playlist : playlistsPage.getItems()) {
System.out.println(playlist.getName() + " : "+ playlist.getId() + " : "+ playlist.getUri() + " : track count ="+ playlist.getTracks().getTotal());
/* item i = new item();
i.title = playlist.getName();
i.creator = playlist.getOwner().getId();
i.uri = playlist.getId();
data.add(i);
*/
}
} catch (Exception e) {
System.out.println("Something went wrong!" + e.getMessage());
}
}
@Override
public void onFailure(Throwable throwable) {
/* An error occurred while getting the access token. This is probably caused by the client id or
* client secret is invalid. */
System.out.println("Something went wrong! 2" );
throwable.printStackTrace();
throwable.printStackTrace(System.out);
}
});
return;
}
}
spotify.spotifyhttpManger.execute 类看起来像这样
private String execute(HttpMethod method) throws WebApiException, IOException {
final HttpClient httpClient = new HttpClient(connectionManager);
try {
httpClient.executeMethod(method);
handleErrorStatusCode(method);
String responseBody = method.getResponseBodyAsString();
handleErrorResponseBody(responseBody);
return responseBody;
} catch (IOException e) {
throw new IOException();
} finally {
method.releaseConnection();
}
}
我不知道为什么会出现此错误或如何在 atm 上解决它?
最佳答案
所以我没能弄清楚问题出在哪里,但后来我重新安装了操作系统,它又能正常工作了
关于java - Linux 特定错误 IOException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42913659/
我们有一个连接到某些网络服务的 Windows 窗体应用程序。它列出了系统中的文档,当用户双击一个文件时,我们将文件下载到本地计算机并打开文档供他们编辑。一旦用户关闭文档,我们就会将其上传回系统。 对
public class SampleCloseable implements AutoCloseable { private String name; public SampleCl
我正在尝试使用 JAVA 运行一个简单的 sqoop 导入程序。 我的程序: String driver="com.vertica.Driver"; Configuration con
我需要从 Java 执行一个外部程序(使用 libreoffice 将 fodt 文件转换为 pdf,就这样发生了)我知道该程序所需的精确命令行: /usr/bin/libreoffice --hea
AFAIK,标准try-with-resources 形式 try(InputStream is= new ...){ ... some reading from is } catch (..
我观察到这两种说法都是有效的。与第二个语句相比,第一个语句中记录的额外内容是什么? 最佳答案 第一个还记录原始异常(和堆栈跟踪),第二个仅记录消息。 因此,第一个语句中记录的“额外内容”是原始异常。这
我想执行重命名和删除功能,环境是LINUX。这是我正在使用的代码, String[] command_ary = { "/usr/bin/sh", "-c", command }; Runtime r
在使用 selenium webdriver 实现 Web 应用程序的自动化时,我遇到了一种情况,我需要上传文件并进一步继续。 我们为此使用 Java 和 Tcl 脚本语言。 下面是我的 TCL 代码
我正在尝试使用 ANT 将文件从一个目录复制到 Linux 上的另一个目录。 首先我使用了复制任务,它工作正常但文件模式没有保留。然后我改为使用 ,这就是我卡住的地方。 我的目标是这样的:
当我输入命令时: ./sqoop-import --connect jdbc:mysql://localhost/sqoop2 -table sqeep2 -m 1 -hive-import 当执行这
我正在使用 Sun 的 keytool 创建一个 Bouncy caSTLe keystore 并将证书导入其中。 keytool 确实会生成一个 Bouncy caSTLe 格式的 keystore
我正在执行下面的程序,它通过 java 调用 shell,我得到了异常请帮助我。 程序: import java.io.*; import java.util.*; public class Proc
我在我的一个项目中遇到了这个错误。 FAILURE: Build failed with an exception. What went wrong: Execution failed for tas
什么情况下read end可以死对偶PipedOutputStream和 PipedInputStream ?我没有关闭任何管道。 最佳答案 我遇到了java.io.IOException: Read
我有一段从文件中读取数据的代码。我想在此代码中强制 IOException 用于测试目的(我想检查代码在这种情况下是否抛出正确的自定义异常)。 例如,有什么方法可以创建一个防止被读取的文件?也许处理一
我为MapReduce文本排序编写了这样的代码: public static class SortMapper extends Mapper { private Text citizenshi
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我要createNewFile有一条路径,但我得到了一个 IOException。问题是,详细的消息无法解释,我只能看到一堆问号。 我最初使用的是西类牙语的 Windows 10,但安装了中文语言包。
我认为这是基本的东西,但我不知道该怎么做。为什么我得到 IOException never throw in body of相应的 try 语句 public static void main(Str
我正在从 Java 项目中的类路径读取文件。 示例代码: public static Properties loadPropertyFile(String fileName) {
我是一名优秀的程序员,十分优秀!