我正在尝试从名为Products的数据库表中检索一些数据。问题是在尝试测试我的代码时,它给了我“SET w3wp2ID=0
SET w3wp1ID=0
SET w3wpID=0
SET ValuesAreSet=FALSE
for /f "tokens=2,3,4 delims=," %%A in ('typeperf -sc 1 -y "\Process(w3wp*)\ID Process" ^| find /V "\\" ^| find /V "please wait..."') do (
if "%ValuesAreSet%"=="FALSE" (
for /f "delims=." %%x in ("%%~A") do SET /A w3wp2ID+=%%x
for /f "delims=." %%x in ("%%~B") do SET /A w3wp1ID+=%%x
for /f "delims=." %%x in ("%%~C") do SET /A w3wpID+=%%x
)
SET ValuesAreSet=TRUE
)
”。当我查看我的应用程序logcat报告时,我得到了这个:
logcat报告:
这是CustomAdapter类:
Unfortunately, 'app' has stopped
你能解释一下出了什么问题吗?