手把手教你使用Java來編寫ASP組件(2)
發(fā)表時(shí)間:2023-08-11 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]5、 雙擊JavaASP.java,會(huì)出現(xiàn)一個(gè)代碼框,把下面的代碼輸入代碼框,并保存! mport com.ms.iis.asp.*; import com.ms.mtx.*; 這兩句應(yīng)當(dāng)出...
5、 雙擊JavaASP.java,會(huì)出現(xiàn)一個(gè)代碼框,把下面的代碼輸入代碼框,并保存。
import com.ms.iis.asp.*;
import com.ms.mtx.*;
這兩句應(yīng)當(dāng)出現(xiàn)在程序的最前面,它們是導(dǎo)入命令,導(dǎo)入我們?cè)诠こ讨行枰玫降哪承㎎ava類的包,我下面給出完整的程序
/** * This class is designed to be packaged with a COM DLL output format. * The class has no standard entry points, other than the constructor. * Public methods will be exposed as methods on the default COM interface. * @com.register ( clsid=ADE14872-9CF6-42A0-A8F2-7A571E51A840, typelib=5E11D496-7229-4283-A40B-139E05DEF44C ) */ //上面我們看到一個(gè)clsid,它是用來標(biāo)記微軟COM組件所用的。
import com.ms.iis.asp.*;//導(dǎo)入兩個(gè)包
import com.ms.mtx.*;
public class JavaASP
{
public boolean HelloWorld()
{
Response newRes = AspContext.getResponse();//創(chuàng)建一個(gè)Response
newRes.write("Hello World,Maybe it is your first JavaASP COM!");
return true;
}
}