c#根据网址抓区目录和文件名的两个函数
我学这个软件开始都思考这个问题了.今天终于完善了这个代码.高兴得很 2006-10-20 ,难道是晚上工作效率更高精神更集中的原因么?哈哈
public void geturlfolername(string strhtmlpagepath)
{
//抓取网址字符串中的文件目录
int at = 0;
int start = 0;
int notei=0;
int endi=0;
int[] myintarray = new int[10];
string newfoldername;
while((start < strhtmlpagepath.length) && (at > -1))
{
at = strhtmlpagepath.indexof('/', start);
if (at == -1) break;
myintarray[notei]=at;
start = at+1;
notei = notei+1;
endi=at;
}
for(int i=0;i<notei;i++)
{
//lstfiles.items.add(myintarray[i]);
if(myintarray[i]>0)
{
if (myintarray[i+1]>0)
{
newfoldername=strhtmlpagepath.substring(myintarray[i]+1,myintarray[i+1]-myintarray[i]-1);
lstfiles.items.add(newfoldername);
}
}
}
}
public void geturlfilename(string strhtmlpagepath)
{
//抓取网址字符串中的文件名称
int at = 0;
int start = 0;
int notei=0;
int endi=0;
int[] myintarray = new int[10];
while((start < strhtmlpagepath.length) && (at > -1))
{
at = strhtmlpagepath.indexof('/', start);
if (at == -1) break;
myintarray[notei]=at;
start = at+1;
notei = notei+1;
endi=at;
}
for(int i=0;i<notei;i++)
{
//lstfiles.items.add(myintarray[i]);
if(myintarray[i]>0)
{
if (myintarray[i+1]==0)
{
string
新闻热点
疑难解答