我创建了一个具有3层的Web应用程序,并尝试在本地主机中发布。但是我收到一个错误消息,说没有找到一个类,它实际上在我的业务层程序集中。
编译错误 说明:编译服务于此请求所需的资源期间发生错误。请查看以下特定的错误详细信息,并适当地修改您的源代码。
编译器错误消息:CS0246:找不到类型或名称空间名称'Employee'(您是否缺少using指令或程序集引用?)
源错误:
import os
import csv
import subprocess
startdir= '/root/Desktop/Files/'
outdir = '/root/Desktop/Outcsv'
suffix= 'Emotet-infection-with-Gootkit.pcap'
def decode_to_file(cmd, in_file, new_suffix):
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
fileName = outdir + '/' + in_file[len(startdir):-len(suffix)] + "Emotet-infection-with-Gootkit.csv"
os.makedirs(os.path.dirname(fileName), exist_ok=True)
csv_writer = csv.writer(open(fileName, 'w'))
for line_bytes in proc.stdout:
line_str = line_bytes.decode('utf-8')
csv_writer.writerow(line_str.strip().split(','))
for root,dirs, files, in os.walk(startdir):
for name in files:
if name.endswith(suffix):
continue
in_file=os.path.join(root,name)
out_file = outdir + '/' + in_file[len(startdir):-len(suffix)] + "Emotet-infection-with-Gootkit.csv"
cmd = 'tshark -r "{}" -T fields -e frame.time_delta_displayed -e frame.len -e wlan.sa - e wlan.da _E separator=, _E header=y > "{}"'.format(in_file, out_file)
csv_writer = csv.writer(open(out_file, 'w'))
print (cmd)
os.system(cmd)`