用PHP实现手机对jar,jad文件的下载

原文:http://www.verydemo.com/demo_c116_i116737.html

如果我们需要在站点提供jar和jad的手机下载,就必须在服务器设置两个MIME 
jad: 
text/vnd.sun.j2me.app-descriptor 
jar: 
application/java-archive 
而对于一般的虚拟主机来说,我们客户是无法设置的。。 
所以,我们必须借助PHP里的header来实现。。 

文件
------------------------ 
test.jad 
test.jad.php 
test.jar 
test.jar.php 
------------------------ 

修改文件-------- 
test.jad: 
我们先打开,找到这么一行。。 
MIDlet-Jar-URL: test.jar 
该行的作用是引导手机下载。。 
我们现在把它改为test.jar.php 

test.jad.php: 

<?php 
$file_url="test.jad"; 
$handle=fopen($file_url,"r"); 
header("Content-Type:text/vnd.sun.j2me.app-descriptor"); 
echo fread($handle,filesize($file_url)); 
fclose($handle); 
?> 

test.jar.php: 

<?php 
$file_url="test.jar"; 
$handle=fopen($file_url,"r"); 
header("Content-Type:application/java-archive"); 
echo fread($handle,filesize($file_url)); 
fclose($handle); 
?> 

--------------------------------------- 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值