1
我想使用Servlets安裝Blackberry OTA下載程序。如何設置.jad
和.cod
文件的URL? I have set the content type for both files。當我收到來自客戶端的請求時,如何將這兩個文件發送給客戶端?我需要創建兩個servlet還是足夠?使用Servlets的Blackberry OTA下載程序
我想使用Servlets安裝Blackberry OTA下載程序。如何設置.jad
和.cod
文件的URL? I have set the content type for both files。當我收到來自客戶端的請求時,如何將這兩個文件發送給客戶端?我需要創建兩個servlet還是足夠?使用Servlets的Blackberry OTA下載程序
您不一定需要這個servlet。如果這些文件是動態生成的或者不能直接公開訪問(即這些文件不在公共webcontent中),那麼servlet纔有用。
最簡單的方法是將這些文件放在公共webcontent(通常放置JSP/HTML文件的位置),並在servlet容器或webapp的web.xml
文件中配置適當的MIME映射。
<mime-mapping>
<extension>jad</extension>
<mime-type>text/vnd.sun.j2me.app-descriptor</mime-type>
</mime-mapping>
<mime-mapping>
<extension>cod</extension>
<mime-type>application/vnd.rim.cod</mime-type>
</mime-mapping>
然後,當客戶端直接請求文件時,servletcontainer將自動設置正確的內容類型。 http://example.com/file.jad和http://example.com/file.cod。
「我想用馬鈴薯給自行車輪胎充氣。」 – 2010-11-02 15:31:58