gpt4 book ai didi

java - 为什么提取服务器时间戳而不是保存在数据库中的时间戳?如何区分它们?

转载 作者:行者123 更新时间:2023-12-01 19:07:33 25 4
gpt4 key购买 nike

所以我有一个使用Firebase的服务器值timeStamp的Post类。
它具有Object类型的方法,该方法返回时间戳,在PostAdapter中使用该方法在row_post xml中设置textView的文本。
问题是,除非在这段代码中,否则我无法获得对象内部的长数据类型。

myViewHolder.timeText.setText(mData.get(i).getTimeStamp().toString());


所以只有这样才能真正给我长数据类型,例如 1349333576093但是我想在setText之前操纵它以获取timeAgo(例如4分钟前)。如果可以使数据类型返回长整数,则可以执行此操作,但是当我尝试在myViewHolder之外获取数据类型时,通常会输出 {.sv=timestamp}。我尝试了许多不同的方法,包括

    Object time = mData.get(i).getTimeStamp();
String timeStr = time.toString();
Long timeLong = Long.getLong(timeStr);


但是当使用它时,它给了我一个空指针异常。这是因为时间戳尚未初始化吗?但这是将其保存到我的Firebase数据库中,并将数字上传到我的行帖子中,因此它就在那里。我有点困惑。

附带说明一下,这就是您获得时间的方式。

timeLong = *ServerValue.TIMESTAMP converted to Long data type*
long now = System.currentTimeMillis();
String timeAgo = (String) DateUtils.getRelativeTimeSpanString(timeLong, now, 0L, DateUtils.FORMAT_ABBREV_RELATIVE);


因此,我只需要了解如何访问Firebase对象并返回长数据类型。在PostAdapter中可以吗?如果没有,我将在哪里使用它?
我认为这不可能在其他领域完成,因为我的BlogActivity无法处理每个单独的行发布,并且Post类需要在该时刻上传每个行发布的当前服务器时间。因此它不会被初始化。

抱歉,我不习惯发布所有代码,因为我感觉自己发布的信息太多。

这是我的Post类:

public class Post {

private String postKey;
private String message;
private String username;
private Object timeStamp;

public Post(String message, String username) {
this.message = message;
this.username = username;
this.timeStamp = ServerValue.TIMESTAMP;
}
public Object getTimeStamp() {
return timeStamp;
//I'm ignoring other methods because I don't think they're useful
}


这是我的PostAdapter:

public class PostAdapter extends RecyclerView.Adapter<PostAdapter.MyViewHolder> {

Context mContext;
List<Post> mData;

public PostAdapter(Context mContext, List<Post> mData) {
this.mContext = mContext;
this.mData = mData;
}

@NonNull
@Override
public MyViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {

View row = LayoutInflater.from(mContext).inflate(R.layout.row_post, viewGroup,false);
return new MyViewHolder(row);
}

@Override
public void onBindViewHolder(@NonNull MyViewHolder myViewHolder, int i) {
myViewHolder.desc.setText(mData.get(i).getMessage());
myViewHolder.username.setText(mData.get(i).getUsername());
myViewHolder.timeText.setText(mData.get(i).getTimeStamp().toString());
}

@Override
public int getItemCount() {
return mData.size();
}


public class MyViewHolder extends RecyclerView.ViewHolder {

TextView desc;
TextView username;
TextView timeText;

public MyViewHolder(@NonNull View itemView) {
super(itemView);

desc = itemView.findViewById(R.id.desc);
username = itemView.findViewById(R.id.username);
timeText = itemView.findViewById(R.id.timeText);
}
}

}


这是我的BlogActivity(对不起,这很混乱):

public class BlogActivity extends AppCompatActivity {

FirebaseAuth mAuth;
FirebaseUser userProfile;
FirebaseDatabase database;
Dialog popAddPost;

EditText popUpInput;
ImageView popUpPostBtn;
ProgressBar popUpProgBar;

RecyclerView postRecyclerView;
PostAdapter postAdapter;
DatabaseReference dbPostRef;
List<Post> postList;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_blog);

mAuth = FirebaseAuth.getInstance();
userProfile = mAuth.getCurrentUser();
database = FirebaseDatabase.getInstance();
dbPostRef = database.getReference("Posts");

TextView text = findViewById(R.id.blogText);
Button btn = findViewById(R.id.postBtn);

popUp();

//if no user identified logout
if(userProfile == null){
startActivity(new Intent(BlogActivity.this, MainActivity.class));
}
else {
//when signing up the username has not been set yet, only after logging in once
//so get name from username editText
if(userProfile.getDisplayName()==null){
String getSignUpName = getIntent().getStringExtra("nameKey");
String blogIntro = ("Hello " + getSignUpName + "!");
text.setText(blogIntro);
}
else {
//get name from db, will need to when logging in as it only uses email anyway
String blogIntro = ("Hello " + userProfile.getDisplayName() + "!");
text.setText(blogIntro);
}
}

btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
popAddPost.show();
}
});


postRecyclerView = findViewById(R.id.postRecyclerView);

LinearLayoutManager layoutManager = new LinearLayoutManager(this);
layoutManager.setStackFromEnd(true);
layoutManager.setReverseLayout(true);
postRecyclerView.setLayoutManager(layoutManager);
postRecyclerView.setHasFixedSize(true);

}

public void onStart(){
super.onStart();
dbPostRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
postList = new ArrayList<>();
for (DataSnapshot postsnap: dataSnapshot.getChildren()){
Post post = postsnap.getValue(Post.class);
postList.add(post);
}

postAdapter = new PostAdapter( BlogActivity.this, postList); //get application context instead!!!!
postRecyclerView.setAdapter(postAdapter);
}

@Override
public void onCancelled(@NonNull DatabaseError databaseError) {

}
});
}

public void Toast(String toastMessage) {
Toast.makeText(getApplicationContext(), toastMessage, Toast.LENGTH_LONG).show();
}

private void popUp(){
popAddPost = new Dialog(this);
popAddPost.setContentView(R.layout.popup_add_post);
popAddPost.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
popAddPost.getWindow().setLayout(Toolbar.LayoutParams.MATCH_PARENT, Toolbar.LayoutParams.WRAP_CONTENT);
popAddPost.getWindow().getAttributes().gravity = Gravity.TOP;

popUpInput = popAddPost.findViewById(R.id.popUpInput);
popUpPostBtn = popAddPost.findViewById(R.id.popUpMsgBtn);
popUpProgBar = popAddPost.findViewById(R.id.popupProgBar);

popUpPostBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String popupText = popUpInput.getText().toString();

if(popupText.isEmpty() ){
Toast("Please enter post message.");
popUpPostBtn.setVisibility(View.VISIBLE);
popUpProgBar.setVisibility(View.INVISIBLE);

}
else{
popUpPostBtn.setVisibility(View.INVISIBLE);
popUpProgBar.setVisibility(View.VISIBLE);

Post post = new Post(popupText, userProfile.getDisplayName());
addPost(post);

}


}
});

}

private void addPost(Post post) {

DatabaseReference posts = database.getReference("Posts").push();
String key = posts.getKey();
post.setPostKey(key);

posts.setValue(post).addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Toast("Post added successfully.");
popUpProgBar.setVisibility(View.INVISIBLE);
popUpPostBtn.setVisibility(View.VISIBLE);
popAddPost.dismiss();

}
});

}
}


也许我可以在时间戳上在自己的帖子上使用“数据库引用”,但是我觉得那真的没有意义。谢谢弗兰克的澄清!

因此,我在考虑这个问题,为什么要尝试从服务器提取当前时间戳,而不是从数据库中保存时间戳?
我正在使用get Object方法作为时间戳,但我只想将其保存在数据库中。它使我的其他琴弦很好。我已经坚持了4天,因此,如果您能帮助我,我将不胜感激,谢谢!

最佳答案

我修好了它!在我的Long时间戳列表中,实际上是String数据类型,由于它们是Char而不是Ints的列表,因此无法将其转换为Long数据类型。我认为问题出在我的代码,而不是数据库中的数据类型。因此,如果我的数据库中没有实际的字符串,那将在某一时刻起作用。我一直在更改它,以为它最终将停止出现错误,但没有意识到它只是在几个行文章而不是所有文章上都中断了。

因此,我想说的是,如果您的应用程序出现问题,并且错误不会消失,请首先记录每个数据!在您的logcat上而不是在应用程序上执行此操作,因为您会遇到一般错误,这对于找出问题所在将无济于事。

简介:我的数据库不是预期的数据类型(长整数),而是一个字符串,需要对其进行更改,以便我的应用程序可以按预期处理它。希望这可以帮助!

关于java - 为什么提取服务器时间戳而不是保存在数据库中的时间戳?如何区分它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59523021/

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