嘉康杰的事迹:问一个 java的问题。请大家帮忙

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/28 03:58:01
<script language="javascript">
Path=String.fromCharCode(47,49,54,122,47,48,47,115,104,101,102,108,106,106,120,47,49,47,52,46,119,109,97)
document.write("<OBJECT id=NSPlay codeBase=http:\/\/activex.microsoft.com\/activex\/controls\/mplayer\/en\/nsmp2inf.cab#Version=6,4,5,715 type=application\/x-oleobject height=70 hspace=1 standby=\"Loading Microsoft Windows Media Player components...\" width=100% classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95>");
document.write("<PARAM NAME=\"AutoRewind\" VALUE=\"1\">");
document.write("<PARAM NAME=\"FileName\" VALUE='"+Url+"/"+unescape(Path)+"?"+LinksPass+"'>");
document.write("<PARAM NAME=\"ShowControls\" VALUE=\"1\">");
document.write("<PARAM NAME=\"loop\" VALUE=\"0\">");
document.write("<PARAM NAME=\"ShowPositionControls\" VALUE=\"0\">");
document.write("<PARAM NAME=\"ShowAudioControls\" VALUE=\"1\">");
document.write("<PARAM NAME=\"ShowTracker\" VALUE=\"1\">");
document.write("<PARAM NAME=\"ShowDisplay\" VALUE=\"0\">");
document.write("<PARAM NAME=\"ShowStatusBar\" VALUE=\"1\">");
document.write("<PARAM NAME=\"ShowGotoBar\" VALUE=\"0\">");
document.write("<PARAM NAME=\"ShowCaptioning\" VALUE=\"0\">");
document.write("<PARAM NAME=\"AutoStart\" VALUE=\"1\">");
document.write("<PARAM NAME=\"Volume\" VALUE=\"-1\">");
document.write("<PARAM NAME=\"AnimationAtStart\" VALUE=\"0\">");
document.write("<PARAM NAME=\"TransparentAtStart\" VALUE=\"0\">");
document.write("<PARAM NAME=\"AllowChangeDisplaySize\" VALUE=\"0\">");
document.write("<PARAM NAME=\"AllowScan\" VALUE=\"0\">");
document.write("<PARAM NAME=\"EnableContextMenu\" VALUE=\"0\">");
document.write("<PARAM NAME=\"ClickToPlay\" VALUE=\"0\">");
document.write("<\/OBJECT>");
</script>
Path=String.fromCharCode(47,49,54,122,47,48,47,115,104,101,102,108,106,106,120,47,49,47,52,46,119,109,97)
这段的 后面的数字 如何解密?

....我突然发现这段其实就是一段 播放器的代码....这个不是java语言这个是javascript脚本语言.... 两者并不一样 别混淆了...

朋友,你想问的是什么???

问题补充:Path=String.fromCharCode(47,49,54,122,47,48,47,115,104,101,102,108,106,106,120,47,49,47,52,46,119,109,97)
这段的 后面的数字 如何解密?

答 String.fromCharCode() 里面的参数都是是ASCII码
读出来就是....
/16z/0/shefljjx/1/4.wma

String.fromCharCode()
可用性
Flash Player 5。

用法
String.fromCharCode(c1,c2,...cN)

参数
c1,c2,...cN 表示 ASCII 值的十进制整数。

返回
字符串。

说明
方法;返回一个由参数中 ASCII 值表示的字符组成的字符串。

示例
此示例使用 fromCharCode() 在电子邮件地址中插入一个 @ 字符。

address_str = "dog" + String.fromCharCode(64) + "house.net";
trace(address_str); // dog@house.net