gpt4 book ai didi

java - 尝试写入/读取 firebase 实时数据库但没有结果 - java 服务器桌面

转载 作者:行者123 更新时间:2023-12-02 03:54:09 27 4
gpt4 key购买 nike

我一整天都在尝试了解我的代码发生了什么,这些代码应该从 Firebase 实时数据库写入和读取,但没有成功,并且没有任何问题、错误、异常或任何类型的提示可以帮我弄清楚。我正在使用用于桌面的java进行编码,而不是用于Android,因为我的搜索中的所有出现都会返回很多,尽管我也使用相同的数据库为Android编写了相同的操作,并且工作得很好。我在这上面花费了太多的时间和精力,而且我的截止日期太短,无法将其作为我正在做的学科的项目来提交,所以如果有人可以提供帮助,我将非常感激!

由于在Android中完全可以读取和写入数据,因此我排除了问题出在数据库中的可能性。我正在按照 Firebase Admin page 中提供的说明进行操作。正如我所说,没有错误,但也没有结果。使用相同的配置,从 Firebase 控制台获取的 json key 文件可以与 Firebase Cloud Messaging 正常工作,因此我认为该 key 也可以。

我正在尝试的代码如下,与 Firebase 网页几乎相同:

package pt.ipp.estg.housecontrol;

import com.google.auth.oauth2.GoogleCredentials;
import com.google.firebase.FirebaseApp;
import com.google.firebase.FirebaseOptions;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;

import java.io.FileInputStream;
import java.io.IOException;

class StarterFRD {

public static void main(String[] args) throws IOException {

FileInputStream refreshToken = new FileInputStream("/Users/wdcunha/Development/Java/frdproj/src/main/resources/housecontrolmobile-firebase-adminsdk-qv0hl-f41a07409d.json");

FirebaseOptions options = new FirebaseOptions.Builder()
.setCredentials(GoogleCredentials.fromStream(refreshToken))
.setDatabaseUrl("https://housecontrolmobile.firebaseio.com/")
.build();

FirebaseApp.initializeApp(options);

// As an admin, the app has access to read and write all data, regardless of Security Rules
DatabaseReference ref = FirebaseDatabase.getInstance()
.getReference("users");

System.out.println("ref: "+ref);

ref.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
Object document = dataSnapshot.getValue();
System.out.println("document: "+document);
}

@Override
public void onCancelled(DatabaseError error) {
System.out.println("canceled: "+error.toException());
}
});

Utilizador utilz = new Utilizador("Euquipe", "eu@quipe.com");

System.out.println("utilz nome: "+utilz.getNome());
System.out.println("utilz email: "+utilz.getEmail());

ref.child("2").push().setValueAsync(utilz);

ref.child("3").setValue("I'm writing data", new DatabaseReference.CompletionListener() {
@Override
public void onComplete(DatabaseError databaseError, DatabaseReference databaseReference) {
if (databaseError != null) {
System.out.println("Data could not be saved " + databaseError.getMessage());
} else {
System.out.println("Data saved successfully."+databaseReference);
}
}
});
}
}

数据库就是这样一个:

Link to print of the firebase database I'm using

当我运行代码时,我可以使用 println 从下面的行获取数据(这只是来自数据库的 url):

        DatabaseReference ref = FirebaseDatabase.getInstance()

设置为maven项目,所以pom.xml写的是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>pt.ipp.estg.housecontrol</groupId>
<artifactId>housecontrolserver</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>6</source>
<target>6</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-admin</artifactId>
<version>6.8.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.25</version>
</dependency>

</dependencies>
</project>

整个代码在 Github here 中.

所以,就是这样。即使一整天都在搜索和尝试许多选项之后我仍然没有任何线索,我真的需要帮助。我希望有人能给我很大的帮助。

最佳答案

如果有人遇到同样的困难,问题是我没有使用服务器来保持它的工作,所以当我运行它时,没有足够的时间来接收反馈。一旦我保持它运行,它就能够显示来自 firebase 的所有通信结果。

关于java - 尝试写入/读取 firebase 实时数据库但没有结果 - java 服务器桌面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56761265/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com