2014-12-06 153 views
0

我在播放某個URL的聲音時遇到了麻煩。嘗試從URL播放聲音Java

這裏是我當前的代碼,

public static void aplay(String url) throws 
    MalformedURLException, UnsupportedAudioFileException, 
    IOException, LineUnavailableException { 

     Clip c = AudioSystem.getClip(); 
     AudioInputStream a = AudioSystem.getAudioInputStream(new URL(url)); 
     Clip c = AudioSystem.getClip(); 
     c.open(a); 
     c.start(); 
} 

而且,我在我的「主」的方法這種方法。我把https://translate.google.com/translate_tts?ie=utf-8&tl=en&q=Hi%20There作爲'url',它不起作用,它會以403響應(服務器返回的HTTP響應代碼:403)。我只是想知道我是否可以解決這個問題。

感謝, 丹

+0

403表示禁止。一般來說,除非你有一定的訪問級別,否則這個問題不會輕易修復。 – rfornal 2014-12-06 04:27:27

+0

@rfornal有什麼替代谷歌語音鏈接? – Dann15 2014-12-06 04:30:47

+0

還有幾個選擇......我已經使用了一些創建培訓視頻,但不像編程那樣在這裏進行。 – rfornal 2014-12-06 04:39:02

回答

0

的網址是谷歌一個聲音文件轉換。爲了防止濫用Google服務,服務器會執行一些啓發式檢查,試圖通過該檢查來判斷它是訪問該URL的人或自動服務。這就是爲什麼它回答403,實際上這意味着「禁止」。

聲明:考慮爲什麼他們禁止並檢查他們的使用條款。

在Chrome瀏覽器中直接打開網址。使用像wget或類URL這樣的工具檢索URL不會 - 至少不是開箱即用的。

您需要更改HTTP請求的User-Agent屬性才能僞造不同的用戶代理。您可以通過連接「手動」並更改「User-Agent」請求屬性來完成此操作。

以下WGet.java上市演示瞭如何做到這一點:

import java.io.*; 
import java.net.*; 

public class WGet { 
    public static void main(final String... args) throws IOException { 
     for (final String arg : args) { 
      wget(arg); 
     } 
    } 
    public static void wget(final String arg) throws IOException { 
     wget(new URL(arg)); 
    } 
    public static void wget(final URL url) throws IOException { 
     final URLConnection con = url.openConnection(); 
     con.setRequestProperty("User-Agent", "My Client"); 
     try (final InputStream in = con.getInputStream()) { 
      copy(in, System.out); 
     } 
    } 
    public static void copy(final InputStream in, final OutputStream out) throws IOException { 
     final byte[] buf = new byte[4096]; 
     for (int bytesRead; (bytesRead = in.read(buf)) != -1;) 
      out.write(buf, 0, bytesRead); 
     out.flush(); 
    } 
} 

AudioSystem也可以用InputStream使用。因此,下面aplay()方法應該工作:

public static void aplay(String url) throws UnsupportedAudioFileException, IOException, LineUnavailableException { 
    Clip c = AudioSystem.getClip(); 
    AudioInputStream a = AudioSystem.getAudioInputStream(openStream(url)); 
    Clip c = AudioSystem.getClip(); 
    c.open(a); 
    c.start(); 
} 
public static InputStream openStream(String url) throws IOException { 
    final URL url = new URL(url); 
    final URLConnection con = url.openConnection(); 
    con.setRequestProperty("User-Agent", "My Client"); 
    return con.getInputStream(); 
} 

免責聲明:我向您展示的技術方案。如果您將此代碼添加到您的程序並使用它從Google獲取聲音文件,那麼您實際上可能違反了Google翻譯的使用條款。在產品中使用此代碼從Google翻譯中獲取聲音文件之前,請先獲得相關法律建議。