1

我正在尝试发送 long 的值(在本例中为 long mStartTX),但是每次我尝试这样做时,long (mStartTX) 的标题/名称都会出现在我的数据浏览器中,而不是 long 代表的数据(自应用程序启动以来使用的数据总字节数)

如何纠正这种情况,以便 long 表示的值出现在 parse.com 中?我敢肯定这很简单。我似乎无法使用以下方法发送我需要的数据:

   testObject.put("time", Long.valueOf(mStartTX));

完整来源:

public class ParseStarterProjectActivity extends Activity {
TextView textSsid, textSpeed, textRssi;

public Handler mHandler = new Handler();
public long mStartRX = 0;
public long mStartTX = 0;


/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.parser);
textSsid = (TextView) findViewById(R.id.Ssid);
textSpeed = (TextView) findViewById(R.id.Speed);
textRssi = (TextView) findViewById(R.id.Rssi);
Long.toString(mStartTX);
ParseAnalytics.trackAppOpened(getIntent());
ParseObject testObject = new ParseObject("TestObject");
testObject.put("time", Long.valueOf(mStartTX));
testObject.saveInBackground();


mStartRX = TrafficStats.getTotalRxBytes();
mStartTX = TrafficStats.getTotalTxBytes();
if (mStartRX == TrafficStats.UNSUPPORTED || mStartTX == TrafficStats.UNSUPPORTED)     AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Uh Oh!");
alert.setMessage("Your device does not support traffic stat monitoring.");
alert.show();
} else {
mHandler.postDelayed(mRunnable, 1000);
}
}
private final Runnable mRunnable = new Runnable() {
public void run() {
TextView RX = (TextView)findViewById(R.id.RX);
TextView TX = (TextView)findViewById(R.id.TX);
long rxBytes = TrafficStats.getTotalRxBytes()- mStartRX;
RX.setText(Long.toString(rxBytes));
long txBytes = TrafficStats.getTotalTxBytes()- mStartTX;
TX.setText(Long.toString(txBytes));
mHandler.postDelayed(mRunnable, 1000);
4

1 回答 1

0

难怪,"mStartTX"是一个String字面量,mStartTX是一个类型的变量long。不带引号使用mStartTX,如果方法不接受 long 作为参数,请使用Long.toString(mStartTX),然后使用Long.valueOf(mStartTXStr). 希望这可以帮助。

于 2013-04-12T04:37:28.320 回答