明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

手把手教你使用Java來編寫ASP組件(2)

[摘要]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;
 }

}