我正在收集信号数据并将其上传到数据库。
在尝试实现其余功能之前,我有几个函数并做了一些测试函数。当我上传我想要使用的类而不是测试用例时,它会崩溃。
以下是类方法和初始化的代码:
初始化数据库
FirebaseDatabase database;
DatabaseReference myRef;
类:
package com.example.mike.maps_example;
/**
* Created by Mike on 3/10/2017.
*/
public class WcdmaSignalEntry {
Double Latitude, Longitude;
String dBm;
String Cid;
String Lac;
String Mcc;
String Mnc;
String Psc;
String Uarfcn;
String connectionType = "WCDMA";
public WcdmaSignalEntry(){
// Default constructor required for calls to DataSnapshot.getValue(User.class)
}
public WcdmaSignalEntry(double Latitude, double Longitude, String dBm, String Cid, String Lac, String Mcc, String Mnc, String Psc, String Uarfcn){
this.Latitude = Latitude;
this.Longitude = Longitude;
this.dBm = dBm;
this.Cid = Cid;
this.Lac = Lac;
this.Mcc = Mcc;
this.Mnc = Mnc;
this.Psc = Psc;
this.Uarfcn = Uarfcn;
}
}
以下是测试类的代码:
package com.example.mike.maps_example;
/**
* Created by Mike on 28/9/2017.
*/
public class CellSignalEntry {
public double Latitude;
public double Longitude;
public String dBm;
public String CI; //cell identity
public String LAC; //Location Area Code
public String PSC; //primary scrambling code
public String TA; //timing advance
public String PCI_LTE; //physical cell identifier for LTE
public String PCI_GSM; //physical cell identifier for GSM
public CellSignalEntry() {
// Default constructor required for calls to DataSnapshot.getValue(User.class)
}
public CellSignalEntry(String dBm, String CI, String LAC, String PSC, String TA, String PCI_LTE, String PCI_GSM, double Latitude, double Longitude) {
this.dBm = dBm;
this.CI = CI;
this.LAC = LAC;
this.PSC = PSC;
this.TA = TA;
this.PCI_GSM = PCI_GSM;
this.PCI_LTE = PCI_LTE;
this.Latitude = Latitude;
this.Longitude = Longitude;
}
}
我有两种方法。
private void writeNewWcdmaEntry(double lon, double lat, String dBm, String Cid, String Lac, String Mcc, String Mnc,String Psc, String Uarfcn, long entry){
WcdmaSignalEntry newEntry = new WcdmaSignalEntry(lon, lat, dBm, Cid, Lac, Mcc, Mnc, Psc, Uarfcn);
tvView.setText(newEntry.dBm);
tvView.setText(newEntry.Cid);
//myRef.child("Entry").child(Long.toString(entry)).setValue(newEntry);
}
和
private void writeNewUser(long userId, String dBm, String CI, String LAC, String PSC, String TA, String PCI_LTE, String PCI_GSM, double currentLat, double currentLon) {
CellSignalEntry user = new CellSignalEntry(dBm, CI, LAC, PSC, TA, PCI_LTE, PCI_GSM, currentLat, currentLon);
myRef.child("Entry").child(Long.toString(userId)).setValue(user);
}
当我运行第二种方法时,我的应用运行正常,但是当我运行第一种方法时,如果我取消注释此行,则在将数据上传到firebase数据库时会崩溃:
//myRef.child("Entry").child(Long.toString(entry)).setValue(newEntry);
我完全难过了。非常感谢任何帮助。
编辑:发布后我发现了。我不知道为什么但是在WcdmaSignalEntry类中将所有变量设置为“public”修复了这个问题,但我不知道为什么,我对java很新,所以解释会很好:)!
答案 0 :(得分:1)
Java documentation说:
如果某个类没有修饰符(默认值,也称为包私有),则只能在其自己的包中显示。
如果这两个方法(来自您的问题)不在同一个类WcdmaSignalEntry
的包内,即在com.example.mike.maps_example
内,那么除非它们是公共的,否则您无法访问这些变量。
有关访问修饰符的更多信息,请参阅this。